diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2016-01-08 17:42:32 -0800 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2016-01-08 17:42:32 -0800 |
commit | 09ba859d9a6f95db49ef923395ea457b64439290 (patch) | |
tree | dea03dcbdc6af49c3e3c6d9933edc16b1e6b5016 /templates/template.html | |
parent | 7db0f99db806560475be747f720986cbef4b4d4b (diff) | |
download | my_new_personal_website-09ba859d9a6f95db49ef923395ea457b64439290.tar.xz my_new_personal_website-09ba859d9a6f95db49ef923395ea457b64439290.zip |
Site design refresh part II: icon font
Use slimmed icon font packaged by http://fontello.com/. I only need two
glyphs: RSS and CC. I ended up picking the glyphs from the Entypo v2.0
family (https://github.com/danielbruce/entypo), licensed under SIL. I
actually like the Font Awesome glyphs slightly better, but fontello
currently only supports FA v4.3.0, which doesn't include the circular CC
glyph I need.
Old web fonts are kept for now. They will be removed after a while. See
\#9.
Open Sans is still in place and will be addressed later when the logo is
attacked.
The entire fontello package I downloaded, including the license, will
be added to this repo as source/fonts/fontello/ later when I have
implemented an exclude list in pyblog to prevent the directory from
being copied to the deployment tree.
Diffstat (limited to 'templates/template.html')
-rw-r--r-- | templates/template.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/templates/template.html b/templates/template.html index 8ac8a2ef..a42df254 100644 --- a/templates/template.html +++ b/templates/template.html @@ -13,7 +13,6 @@ $endif$ <meta name="msapplication-TileImage" content="/img/favicon-144.png"/> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="/css/fonts.css" media="all" rel="stylesheet" type="text/css"/> - <link href="/css/font-awesome.min.css" media="all" rel="stylesheet" type="text/css"> <link href="/css/normalize.css" media="all" rel="stylesheet" type="text/css"/> <link href="/css/theme.css" media="all" rel="stylesheet" type="text/css"/> <link href="/css/theme-wide.css" media="only screen and (min-width: 1441px)" rel="stylesheet" type="text/css"/> @@ -55,7 +54,7 @@ $if(updated)$ </span> $endif$ <span class="rfooter"> - <a class="rss-icon fa fa-rss fa-flip-horizontal" href="/rss.xml" target="_blank" title="RSS feed"><!--RSS feed icon--></a><a class="atom-icon fa fa-rss" href="/atom.xml" target="_blank" title="Atom feed"><!--Atom feed icon--></a><a class="cc-icon fa fa-creative-commons" href="https://creativecommons.org/licenses/by/4.0/" target="_blank" title="Released under the Creative Commons Attribution 4.0 International license."><!--CC icon--></a> + <a class="rss-icon" href="/rss.xml" target="_blank" title="RSS feed"><!--RSS feed icon--></a><a class="atom-icon" href="/atom.xml" target="_blank" title="Atom feed"><!--Atom feed icon--></a><a class="cc-icon" href="https://creativecommons.org/licenses/by/4.0/" target="_blank" title="Released under the Creative Commons Attribution 4.0 International license."><!--CC icon--></a> <a href="https://github.com/zmwangx" target="_blank">Zhiming Wang</a> </span> </footer> |