Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
feather
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
feather
Commits
0ddc68b4
Commit
0ddc68b4
authored
May 23, 2017
by
Cole Bemis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reorganize site
parent
46535e4d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
38 additions
and
25 deletions
+38
-25
category.html
_includes/category.html
+11
-0
footer.html
_includes/footer.html
+1
-3
header.html
_includes/header.html
+1
-1
icon.html
_includes/icon.html
+14
-0
icons.html
_includes/icons.html
+9
-19
index.html
index.html
+1
-1
style.css
style.css
+1
-1
No files found.
_includes/category.html
0 → 100644
View file @
0ddc68b4
<div
class=
"pv4"
>
<h2
class=
"mt0 mb3 tc f6 ttu tracked normal"
>
{{ include.category | replace: '-', ' '}}
</h2>
<ul
class=
"flex flex-wrap justify-center mv0 pl0 list"
>
{% capture category_path %}icons/{{ include.category }}{% endcapture %}
{% for icon in site.static_files %}
{% if icon.path contains category_path %}
{% include icon.html icon=icon %}
{% endif %}
{% endfor %}
</ul>
</div>
\ No newline at end of file
_includes/footer.html
View file @
0ddc68b4
<footer
class=
"flex flex-column items-center p
v5 bt b--black-10
"
>
<footer
class=
"flex flex-column items-center p
b5 pt5-l
"
>
<ul
class=
"flex flex-column flex-row-l justify-center w-80 mv0 pl0 list"
>
<ul
class=
"flex flex-column flex-row-l justify-center w-80 mv0 pl0 list"
>
{% for link in include.links %}
{% for link in include.links %}
<li
class=
"mh3-l pv3 pv0-l f6 ttu tracked bb b--black-10 bn-l"
>
<li
class=
"mh3-l pv3 pv0-l f6 ttu tracked bb b--black-10 bn-l"
>
...
@@ -12,7 +12,5 @@
...
@@ -12,7 +12,5 @@
</p>
</p>
<p
class=
"mv0 f6 lh-copy"
>
<p
class=
"mv0 f6 lh-copy"
>
<span
class=
"mh1"
>
v{{ site.data.package.version }}
</span>
<span
class=
"mh1"
>
v{{ site.data.package.version }}
</span>
-
<span
class=
"mh1"
>
{{ site.data.manifest | size }} icons
</span>
</p>
</p>
</footer>
</footer>
\ No newline at end of file
_includes/header.html
View file @
0ddc68b4
<header
class=
"flex flex-column items-center w-80 mw8 p
v5 pv
6-ns center"
>
<header
class=
"flex flex-column items-center w-80 mw8 p
t5 pt
6-ns center"
>
<h1
class=
"mt0 mb2 f2 fw3 tc lh-title black-90"
>
Feather
</h1>
<h1
class=
"mt0 mb2 f2 fw3 tc lh-title black-90"
>
Feather
</h1>
<p
class=
"mt0 mb5 mb4-ns f5 tc lh-copy"
>
Simply beautiful open source icons
</p>
<p
class=
"mt0 mb5 mb4-ns f5 tc lh-copy"
>
Simply beautiful open source icons
</p>
...
...
_includes/icon.html
0 → 100644
View file @
0ddc68b4
<li
class=
"icon relative pa3 ma2 black-90 bg-animate br3 outline-0 pointer"
>
{% include_relative {{ include.icon.path }} %}
<div
class=
"tooltip flex flex-column tc white bg-dark-gray br3"
>
<p
class=
"dib mh4 mv3 lh-copy nowrap"
>
{{ include.icon.basename }}
</p>
<a
class=
"btn white bg-black-90 dim br3 br--bottom outline-0"
href=
"{{ include.icon.path }}"
download
tabindex=
"-1"
onclick=
"ga('send', 'event', 'download', 'click', '{{ include.icon.basename }}');"
>
Download
</a>
</div>
</li>
_includes/icons.html
View file @
0ddc68b4
<ul
class=
"flex flex-wrap justify-center w-80 w-80-ns center mw8 mv0 pl0 list"
>
<div
class=
"w-80 center mw8 pv5"
>
{% for icon in site.data.manifest %}
{% include category.html category="core" %}
{% capture icon_path %}icons/{{ icon }}.svg{% endcapture %}
{% include category.html category="media-controls" %}
<li
class=
"icon relative pa3 ma2 black-90 bg-animate br3 outline-0 pointer"
>
{% include category.html category="communication" %}
{% include_relative {{ icon_path }} %}
{% include category.html category="photo-and-video" %}
<div
class=
"tooltip flex flex-column tc white bg-dark-gray br3"
>
{% include category.html category="location" %}
<p
class=
"dib mh4 mv3 lh-copy nowrap"
>
{{ icon }}
</p>
{% include category.html category="weather" %}
<a
{% include category.html category="arrows" %}
class=
"btn white bg-black-90 dim br3 br--bottom outline-0"
</div>
href=
"{{ icon_path }}"
download
tabindex=
"-1"
onclick=
"ga('send', 'event', 'download', 'click', '{{ icon }}');"
>
Download
</a>
</div>
</li>
{% endfor %}
</ul>
\ No newline at end of file
index.html
View file @
0ddc68b4
...
@@ -33,7 +33,7 @@ links:
...
@@ -33,7 +33,7 @@ links:
</head>
</head>
<body
class=
"ma0 rubik font-smoothing black-60 bg-near-white"
>
<body
class=
"ma0 rubik font-smoothing black-60 bg-near-white"
>
<div
class=
"
pb5 pb6-ns
bg-white"
>
<div
class=
"bg-white"
>
{% include header.html %}
{% include header.html %}
{% include icons.html %}
{% include icons.html %}
</div>
</div>
...
...
style.css
View file @
0ddc68b4
:root
{
:root
{
--accent
:
#
4353
FF
;
--accent
:
#
2979
FF
;
}
}
.accent
{
.accent
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment