This commit is contained in:
Rico Ullmann 2017-04-02 00:37:57 +00:00 committed by GitHub
commit 89947d5fc2
5 changed files with 441 additions and 32 deletions

View file

@ -59,8 +59,8 @@ a:hover {
}
hr {
color: @light-grey;
background-color: @light-grey;
color: @base00;
background-color: @base00;
height: 1px;
border: none;
margin-top: 40px;

File diff suppressed because one or more lines are too long

View file

@ -1,52 +1,52 @@
// Flex colors
@orange: #D9411E;
@light-orange: #FF5A09;
@white: #ffffff;
@grey: #333333;
@light-grey: #eeeeee;
@med-grey: #999999;
@dark-grey: #242121;
// solarized colors
@base02: #073642;
@base1: #93a1a1;
@base3: #fdf6e3;
@base01: #586e75;
@base00: #657b83;
@base02: #073642;
@base03: #002b36;
// Font family
@sans: 'Source Sans Pro', 'Verdana', sans-serif;
@mono: 'Source Code Pro', 'Consolas', monospace;
// Body
@body-bg: @white;
@text-color: @dark-grey;
@body-bg: @base3;
@text-color: @base03;
// Links
@link-color: @orange;
@link-hover-color: @light-orange;
@link-color: @base02;
@link-hover-color: @base1;
// Sidebar (aside)
@sidebar-bg: @grey;
@sidebar-text-color: @white;
@sidebar-link-color: @white;
@sidebar-link-hover-color: @light-grey;
@sidebar-bg: @base01;
@sidebar-text-color: @base3;
@sidebar-link-color: @base3;
@sidebar-link-hover-color: @base00;
// Buttons
@btn-bg: @orange;
@btn-text-color: @white;
@btn-hover-color: @light-orange;
@btn-bg: @base02;
@btn-text-color: @base3;
@btn-hover-color: @base1;
// Tag cloud
@tag-bg: @orange;
@tag-text-color: @white;
@tag-hover-color: @light-orange;
@tag-bg: @base02;
@tag-text-color: @base3;
@tag-hover-color: @base1;
// Header
@header-text-color: @med-grey;
@header-text-color: @base02;
// Footer
@footer-text-color: @med-grey;
@footer-border-color: @light-grey;
@footer-text-color: @base02;
@footer-border-color: @base00;
// Relativer posts
@rel-post-border-color: @light-grey;
@rel-post-border-color: @base00;
// Nav
@nav-border-color: @light-grey;
@nav-border-color: @base00;
// Social buttons

View file

@ -36,6 +36,24 @@
<link rel="icon" href="{{ FAVICON }}" type="image/x-icon">
{% endif %}
{% if EXTENDED_FAVICON_DIR %}
<link rel="apple-touch-icon" sizes="57x57" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="{{ EXTENDED_FAVICON_DIR }}/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="{{ EXTENDED_FAVICON_DIR }}/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="{{ EXTENDED_FAVICON_DIR }}/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="{{ EXTENDED_FAVICON_DIR }}/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="{{ EXTENDED_FAVICON_DIR }}/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
{% endif %}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
@ -54,6 +72,8 @@
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!--> Microsoft EDGE -->
<meta name="msapplication-TileColor" content="{{ BROWSER_COLOR }}">
{% endif %}
{% block meta %}

View file

@ -1,4 +1,6 @@
<p>{{ _('Powered by %(pelican_url)s - %(flex_url)s theme by %(alexandrevicenzi_url)s',
<p>{{ _('powered by %(pelican_url)s - %(flex_url)s theme by %(alexandrevicenzi_url)s - modified by %(ricoullmann_url)s - Source: %(flex_ricoullmann_url)s',
pelican_url='<a href="http://getpelican.com" target="_blank">Pelican</a>',
flex_url='<a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a>'|safe,
alexandrevicenzi_url='<a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a>'|safe) }}</p>
alexandrevicenzi_url='<a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a>'|safe,
ricoullmann_url='<a href="https://erinnerungsfragmente.de" target="_blank">Rico Ullmann</a>'|safe,
flex_ricoullmann_url='<a href="https://erinnerungsfragmente.de" target="_blank">pelican-theme-flex</a>'|safe) }}</p>