Update to version 0.6
This commit is contained in:
parent
d7c1bfc765
commit
ad67c5846c
16 changed files with 318 additions and 66 deletions
|
@ -15,7 +15,7 @@
|
|||
<div class="textwidget">
|
||||
<h5 class="black-shadow">Services</h5>
|
||||
<ul class="no-bullet black-shadow">
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
<li><a href="{{ site.url }}/contact/">Contact</a></li>
|
||||
<li class="rss-link"><a href="{{ site.url }}/feed.xml">RSS</a></li>
|
||||
<li class="sitemap-link"><a href="{{ site.url }}/sitemap.xml">Sitemap.xml</a></li>
|
||||
</ul>
|
||||
|
@ -37,8 +37,8 @@
|
|||
|
||||
<div class="row">
|
||||
<div class="small-12 columns" style="text-align: right;">
|
||||
<a class="entypo entypo-48" href="#top-of-page"></a>
|
||||
</div><!-- /.small-12.columns -->
|
||||
<a class="entypo entypo-48" href="#top-of-page">  </a>
|
||||
</div><!-- /.small-12.columns -->
|
||||
</div><!-- /.row -->
|
||||
|
||||
</div><!-- /#footer -->
|
||||
|
|
|
@ -10,6 +10,13 @@
|
|||
{% if site.google_site_verification %}
|
||||
<meta name="google-site-verification" content="{{ site.google_site_verification}}" />
|
||||
{% endif %}
|
||||
|
||||
{% if page.meta_description %}
|
||||
<meta name="description" content="{{ page.meta_description | strip_html | escape }}"/>
|
||||
{% elsif page.description %}
|
||||
<meta name="description" content="{{ page.description | strip_html | escape }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if site.google_author %}
|
||||
<link rel="author" href="{{ site.google_author }}"/>
|
||||
{% endif %}
|
||||
|
|
38
_includes/pagination.html
Normal file
38
_includes/pagination.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!-- This loops through the paginated posts
|
||||
|
||||
Total posts: {{ paginator.total_posts }}
|
||||
Total paginate-pages: {{ paginator.total_pages }}
|
||||
|
||||
-->
|
||||
|
||||
{% for post in paginator.posts %}
|
||||
<div class="row">
|
||||
<div class="small-12 columns bottom-60">
|
||||
<p class="subtitle">{% if post.subtitle %}{{ post.subtitle }}{% endif %}<span class="subheader"><small> {{ post.date | date: "%d.%m.%Y" }} · {% if post.categories %}{{ post.categories | join: ' · ' }}{% endif %}</small></span></p>
|
||||
<h2><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></h2>
|
||||
<p>
|
||||
{% if post.image.thumb %}<a href="{{ site.url }}{{ post.url }}" title="{{ post.title escape_once }}"><img src="{{ site.url }}/assets/img/{{ post.image.thumb }}" class="alignleft" width="150" height="150" alt="{{ page.title escape_once }}"></a>{% endif %}
|
||||
{{ post.description }}
|
||||
<a href="{{ site.url }}{{ post.url }}" title="Read {{ post.title escape_once }}"><strong>Read more ›</strong></a>
|
||||
</p>
|
||||
</div><!-- /.small-12.columns -->
|
||||
</div><!-- /.row -->
|
||||
{% endfor %}
|
||||
|
||||
|
||||
<nav id="pagination">
|
||||
{% if paginator.previous_page %}
|
||||
{% if paginator.previous_page == 1 %}
|
||||
<a class="radius button small" href="{{ site.url }}/blog/" title="Previous Posts">« Previous Posts</a>
|
||||
{% else %}
|
||||
<a class="radius button small" href="{{ site.url }}/blog/page{{ paginator.previous_page }}/" title="Previous Posts">« Previous</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
<a class="radius button small" href="{{ site.url }}/blog/archive/" title="Blog Archive">Blog Archive</a>
|
||||
|
||||
{% if paginator.next_page %}
|
||||
<a class="radius button small" href="{{ site.url }}/blog/page{{ paginator.next_page }}/" title="Next Posts">Next »</a>
|
||||
{% endif %}
|
||||
</nav>
|
||||
|
|
@ -164,6 +164,80 @@ select {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
/*
|
||||
Mixin: accordion-container()
|
||||
|
||||
Decription: Responsible for the container component of accordions, generating styles relating to a margin of zero and a clearfix
|
||||
|
||||
Explicit Dependencies: a clearfix mixin *is* defined.
|
||||
|
||||
Implicit Dependencies: None
|
||||
|
||||
*/
|
||||
/*
|
||||
Mixin: accordion-navigation( $bg, $hover-bg, $active-bg, $padding, $active_class, $font-color, $font-size, $font-family){
|
||||
|
||||
@params $bg-color: [ color or string ]: Specify the background color for the navigation element
|
||||
@params $hover-bg-color [ color or string ]: Specify the background color for the navigation element when hovered
|
||||
@params $active-bg [ color or string ]: Specify the background color for the navigation element when clicked and not released.
|
||||
@params $active_class [ string ]: Specify the class name used to keep track of which accordion tab should be visible
|
||||
@params $font-color [ color or string ]: Color of the font for accordion
|
||||
@params $font-size [ number ]: Specifiy the font-size of the text inside the navigation element
|
||||
@params $font-family [ string ]: Specify the font family for the text of the navigation of the accorion
|
||||
*/
|
||||
/*
|
||||
|
||||
Mixin: accordion-content($bg, $padding, $active-class)
|
||||
@params $padding [ number ]: Padding for the content of the container
|
||||
@params $bg [ color ]: Background color for the content when it's visible
|
||||
@params $active_class [ string ]: Class name used to keep track of which accordion tab should be visible.
|
||||
*/
|
||||
/* line 140, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
|
||||
.accordion {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/* line 181, ../bower_components/foundation/scss/foundation/components/_global.scss */
|
||||
.accordion:before, .accordion:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
/* line 182, ../bower_components/foundation/scss/foundation/components/_global.scss */
|
||||
.accordion:after {
|
||||
clear: both;
|
||||
}
|
||||
/* line 142, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
|
||||
.accordion .accordion-navigation, .accordion dd {
|
||||
display: block;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
/* line 145, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
|
||||
.accordion .accordion-navigation.active > a, .accordion dd.active > a {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
/* line 146, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
|
||||
.accordion .accordion-navigation > a, .accordion dd > a {
|
||||
background: white;
|
||||
color: #222222;
|
||||
padding: 0.75rem;
|
||||
display: block;
|
||||
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
||||
font-size: 1rem;
|
||||
}
|
||||
/* line 153, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
|
||||
.accordion .accordion-navigation > a:hover, .accordion dd > a:hover {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
/* line 156, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
|
||||
.accordion .accordion-navigation > .content, .accordion dd > .content {
|
||||
display: none;
|
||||
padding: 0.9375rem;
|
||||
}
|
||||
/* line 159, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
|
||||
.accordion .accordion-navigation > .content.active, .accordion dd > .content.active {
|
||||
display: block;
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
/* line 110, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
|
||||
.alert-box {
|
||||
border-style: solid;
|
||||
|
@ -5670,29 +5744,59 @@ h4 {
|
|||
}
|
||||
|
||||
/* line 24, ../scss/_4_typography_theme-fr.scss */
|
||||
dl dt {
|
||||
article dl dt {
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
/* line 25, ../scss/_4_typography_theme-fr.scss */
|
||||
dl dd {
|
||||
article dl dd {
|
||||
line-height: 1.6;
|
||||
margin-bottom: 0.75rem;
|
||||
margin-left: 1.5rem;
|
||||
}
|
||||
|
||||
/* line 27, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 29, ../scss/_4_typography_theme-fr.scss */
|
||||
dl.accordion {
|
||||
border-top: 1px solid #cbcbcb;
|
||||
}
|
||||
|
||||
/* line 30, ../scss/_4_typography_theme-fr.scss */
|
||||
.accordion dd {
|
||||
border-bottom: 1px solid #cbcbcb;
|
||||
}
|
||||
|
||||
/* line 31, ../scss/_4_typography_theme-fr.scss */
|
||||
dd.accordion-navigation span {
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
/* line 32, ../scss/_4_typography_theme-fr.scss */
|
||||
dd.accordion-navigation span:before {
|
||||
content: "\E766";
|
||||
}
|
||||
|
||||
/* line 33, ../scss/_4_typography_theme-fr.scss */
|
||||
dd.accordion-navigation.active span:before {
|
||||
content: "\E764";
|
||||
}
|
||||
|
||||
/* line 34, ../scss/_4_typography_theme-fr.scss */
|
||||
dd.accordion-navigation.active span:before {
|
||||
content: "\E764";
|
||||
}
|
||||
|
||||
/* line 39, ../scss/_4_typography_theme-fr.scss */
|
||||
td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* line 29, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 41, ../scss/_4_typography_theme-fr.scss */
|
||||
code {
|
||||
font-size: 0.875rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* line 31, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 43, ../scss/_4_typography_theme-fr.scss */
|
||||
blockquote {
|
||||
font-style: italic;
|
||||
position: relative;
|
||||
|
@ -5701,13 +5805,13 @@ blockquote {
|
|||
color: #4b4b4d;
|
||||
}
|
||||
|
||||
/* line 39, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 51, ../scss/_4_typography_theme-fr.scss */
|
||||
blockquote p {
|
||||
font-style: italic;
|
||||
color: #7e7e7e;
|
||||
}
|
||||
|
||||
/* line 41, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 53, ../scss/_4_typography_theme-fr.scss */
|
||||
blockquote:before {
|
||||
display: block;
|
||||
content: "\00BB";
|
||||
|
@ -5718,7 +5822,7 @@ blockquote:before {
|
|||
color: #4b4b4d;
|
||||
}
|
||||
|
||||
/* line 49, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 61, ../scss/_4_typography_theme-fr.scss */
|
||||
blockquote:after {
|
||||
display: block;
|
||||
content: "\00AB";
|
||||
|
@ -5729,122 +5833,147 @@ blockquote:after {
|
|||
color: #4b4b4d;
|
||||
}
|
||||
|
||||
/* line 59, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 71, ../scss/_4_typography_theme-fr.scss */
|
||||
blockquote cite:before {
|
||||
content: "\2014 \0020";
|
||||
}
|
||||
|
||||
/* line 61, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 73, ../scss/_4_typography_theme-fr.scss */
|
||||
blockquote cite a, blockquote cite a:visited {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* line 63, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 75, ../scss/_4_typography_theme-fr.scss */
|
||||
cite {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
/* line 65, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 77, ../scss/_4_typography_theme-fr.scss */
|
||||
.alert-box {
|
||||
font-family: "Volkhov", Georgia;
|
||||
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
|
||||
/* line 69, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 81, ../scss/_4_typography_theme-fr.scss */
|
||||
.alert-box p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* line 70, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 82, ../scss/_4_typography_theme-fr.scss */
|
||||
.alert-box a {
|
||||
text-shadow: 1px 1px 0px black;
|
||||
color: #fff;
|
||||
border-bottom: 1px dotted #fff;
|
||||
}
|
||||
|
||||
/* line 75, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 87, ../scss/_4_typography_theme-fr.scss */
|
||||
.alert-box a:hover {
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
/* line 79, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 91, ../scss/_4_typography_theme-fr.scss */
|
||||
button, .button {
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
/* line 81, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 93, ../scss/_4_typography_theme-fr.scss */
|
||||
mark {
|
||||
background-color: #f393b5;
|
||||
}
|
||||
|
||||
/* line 83, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 95, ../scss/_4_typography_theme-fr.scss */
|
||||
.side-nav li.title {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* line 84, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 96, ../scss/_4_typography_theme-fr.scss */
|
||||
.side-nav li {
|
||||
border-top: 1px solid #e4e4e4;
|
||||
}
|
||||
|
||||
/* line 85, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 97, ../scss/_4_typography_theme-fr.scss */
|
||||
.side-nav li a:not(.button) {
|
||||
padding: 0.4375rem 0rem;
|
||||
}
|
||||
|
||||
/* line 87, ../scss/_4_typography_theme-fr.scss */
|
||||
.teaser {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
/* line 88, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 99, ../scss/_4_typography_theme-fr.scss */
|
||||
.subtitle {
|
||||
font-size: 1rem;
|
||||
margin: 0;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* line 100, ../scss/_4_typography_theme-fr.scss */
|
||||
.teaser {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
/* line 101, ../scss/_4_typography_theme-fr.scss */
|
||||
.big-teaser {
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
/* line 102, ../scss/_4_typography_theme-fr.scss */
|
||||
.big-teaser a {
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* Bigteaser Schriftgröße auf kleinen Bildschirmen veringern */
|
||||
@media only screen {
|
||||
/* line 107, ../scss/_4_typography_theme-fr.scss */
|
||||
.big-teaser {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 40.063em) {
|
||||
/* line 112, ../scss/_4_typography_theme-fr.scss */
|
||||
.big-teaser {
|
||||
font-size: 1.8125rem;
|
||||
}
|
||||
}
|
||||
/* - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Additional typographical elements
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - */
|
||||
/* line 98, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 125, ../scss/_4_typography_theme-fr.scss */
|
||||
.sans {
|
||||
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
/* line 99, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 126, ../scss/_4_typography_theme-fr.scss */
|
||||
.serif {
|
||||
font-family: "Volkhov", Georgia;
|
||||
}
|
||||
|
||||
/* line 101, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 128, ../scss/_4_typography_theme-fr.scss */
|
||||
.font-size-huge {
|
||||
font-size: 2.25rem;
|
||||
}
|
||||
|
||||
/* line 102, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 129, ../scss/_4_typography_theme-fr.scss */
|
||||
.font-size-large {
|
||||
font-size: 1.5625rem;
|
||||
}
|
||||
|
||||
/* line 103, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 130, ../scss/_4_typography_theme-fr.scss */
|
||||
.font-size-big {
|
||||
font-size: 1.375rem;
|
||||
}
|
||||
|
||||
/* line 104, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 131, ../scss/_4_typography_theme-fr.scss */
|
||||
.font-size-medium {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
|
||||
/* line 105, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 132, ../scss/_4_typography_theme-fr.scss */
|
||||
.font-size-regular {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
|
||||
/* line 106, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 133, ../scss/_4_typography_theme-fr.scss */
|
||||
.font-size-normal {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
|
@ -5865,27 +5994,27 @@ Additional typographical elements
|
|||
font-style: normal;
|
||||
}
|
||||
|
||||
/* line 131, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 158, ../scss/_4_typography_theme-fr.scss */
|
||||
.entypo {
|
||||
font-family: 'entypo';
|
||||
}
|
||||
|
||||
/* line 132, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 159, ../scss/_4_typography_theme-fr.scss */
|
||||
.entypo-social {
|
||||
font-family: 'entypo-social';
|
||||
}
|
||||
|
||||
/* line 133, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 160, ../scss/_4_typography_theme-fr.scss */
|
||||
.entypo-32 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
/* line 134, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 161, ../scss/_4_typography_theme-fr.scss */
|
||||
.entypo-48 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
/* line 135, ../scss/_4_typography_theme-fr.scss */
|
||||
/* line 162, ../scss/_4_typography_theme-fr.scss */
|
||||
.entypo-64 {
|
||||
font-size: 4rem;
|
||||
}
|
||||
|
@ -5995,7 +6124,13 @@ footer li {
|
|||
color: #f8ca00;
|
||||
}
|
||||
|
||||
/* line 56, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 54, ../scss/_5_layout_theme-fr.scss */
|
||||
#footer a.entypo:hover {
|
||||
background: #490a3d;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* line 57, ../scss/_5_layout_theme-fr.scss */
|
||||
#footer h4,
|
||||
#footer h5 {
|
||||
letter-spacing: 1px;
|
||||
|
@ -6003,7 +6138,7 @@ footer li {
|
|||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* line 61, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 62, ../scss/_5_layout_theme-fr.scss */
|
||||
#footer p.entypo {
|
||||
font-size: 80px;
|
||||
line-height: 54px;
|
||||
|
@ -6012,7 +6147,7 @@ footer li {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
/* line 69, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 70, ../scss/_5_layout_theme-fr.scss */
|
||||
#subfooter {
|
||||
background: #323232;
|
||||
color: white;
|
||||
|
@ -6020,12 +6155,12 @@ footer li {
|
|||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
/* line 75, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 76, ../scss/_5_layout_theme-fr.scss */
|
||||
#subfooter-left ul.inline-list {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* line 79, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 80, ../scss/_5_layout_theme-fr.scss */
|
||||
#subfooter .entypo-social,
|
||||
#subfooter .entypo {
|
||||
font-size: 48px;
|
||||
|
@ -6033,18 +6168,18 @@ footer li {
|
|||
color: #323232;
|
||||
}
|
||||
|
||||
/* line 85, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 86, ../scss/_5_layout_theme-fr.scss */
|
||||
#subfooter li a {
|
||||
color: #7e7e7e;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* line 90, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 91, ../scss/_5_layout_theme-fr.scss */
|
||||
#subfooter li a:hover {
|
||||
color: #e97f02;
|
||||
}
|
||||
|
||||
/* line 94, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 95, ../scss/_5_layout_theme-fr.scss */
|
||||
#subfooter .social-icons li a {
|
||||
display: block;
|
||||
height: 36px;
|
||||
|
@ -6055,13 +6190,13 @@ footer li {
|
|||
vertical-align: center;
|
||||
}
|
||||
|
||||
/* line 104, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 105, ../scss/_5_layout_theme-fr.scss */
|
||||
#subfooter .social-icons li a:hover {
|
||||
background: #323232;
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* line 109, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 110, ../scss/_5_layout_theme-fr.scss */
|
||||
.ad-space {
|
||||
border: 1px solid #fafafa;
|
||||
text-align: center;
|
||||
|
@ -6069,37 +6204,37 @@ footer li {
|
|||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
/* line 116, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 117, ../scss/_5_layout_theme-fr.scss */
|
||||
.top-30 {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
/* line 117, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 118, ../scss/_5_layout_theme-fr.scss */
|
||||
.top-60 {
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
/* line 118, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 119, ../scss/_5_layout_theme-fr.scss */
|
||||
.bottom-30 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
/* line 119, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 120, ../scss/_5_layout_theme-fr.scss */
|
||||
.bottom-60 {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
/* line 121, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 122, ../scss/_5_layout_theme-fr.scss */
|
||||
.side-nav li.title {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* line 122, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 123, ../scss/_5_layout_theme-fr.scss */
|
||||
.side-nav li {
|
||||
border-top: 1px solid #e4e4e4;
|
||||
}
|
||||
|
||||
/* line 123, ../scss/_5_layout_theme-fr.scss */
|
||||
/* line 124, ../scss/_5_layout_theme-fr.scss */
|
||||
.side-nav li a:not(.button) {
|
||||
padding: 0.4375rem 0rem;
|
||||
}
|
||||
|
|
2
assets/css/style_feeling_responsive.min.css
vendored
2
assets/css/style_feeling_responsive.min.css
vendored
File diff suppressed because one or more lines are too long
BIN
assets/img/header_unsplash_10.jpg
Normal file
BIN
assets/img/header_unsplash_10.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 246 KiB |
BIN
assets/img/header_unsplash_11.jpg
Normal file
BIN
assets/img/header_unsplash_11.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 160 KiB |
BIN
assets/img/header_unsplash_8.jpg
Normal file
BIN
assets/img/header_unsplash_8.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 225 KiB |
BIN
assets/img/header_unsplash_9.jpg
Normal file
BIN
assets/img/header_unsplash_9.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 140 KiB |
29
blog/archive.html
Normal file
29
blog/archive.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
layout: default
|
||||
title: "Blog Archive"
|
||||
description: "Check out all blog posts in my blog archive. Click on a headline to read the teaser."
|
||||
image:
|
||||
header: header_unsplash_8.jpg
|
||||
permalink: "blog/archive/"
|
||||
---
|
||||
<div id="blog-index" class="row">
|
||||
<div class="small-12 columns top-30">
|
||||
<h1>{{ page.title }}</h1>
|
||||
{% if page.description %}<p class="teaser">{{ page.description }}</p>{% endif %}
|
||||
|
||||
<dl class="accordion" data-accordion>
|
||||
{% assign counter = 1 %}
|
||||
{% for post in site.posts limit:1000 %}
|
||||
<dd class="accordion-navigation">
|
||||
<a href="#panel{{ counter }}"><span class="entypo entypo-16"></span> {% if post.subtitle %}{{ post.subtitle }} › {% endif %}<strong>{{ post.title }}</strong></a>
|
||||
<div id="panel{{ counter }}" class="content">
|
||||
{{ post.description }}
|
||||
<a href="{{ site.url }}{{ post.url }}" title="Read {{ post.title escape_once }}"><strong>Read more ›</strong></a>
|
||||
</div>
|
||||
</dd>
|
||||
{% assign counter=counter | plus:1 %}
|
||||
{% endfor %}
|
||||
</dl>
|
||||
|
||||
</div><!-- /.small-12.columns -->
|
||||
</div><!-- /.row -->
|
19
blog/index.html
Normal file
19
blog/index.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
layout: default
|
||||
title: "The Feeling Responsive Blog Template"
|
||||
image:
|
||||
header: header_unsplash_6.jpg
|
||||
---
|
||||
<div id="blog-index" class="row">
|
||||
<div class="medium-7 columns top-30">
|
||||
{% include pagination.html %}
|
||||
</div><!-- /.medium-7.columns -->
|
||||
|
||||
|
||||
|
||||
<div class="medium-5 columns top-30">
|
||||
{% include sidebar.html %}
|
||||
</div><!-- /.medium-5.columns -->
|
||||
</div><!-- /.row -->
|
||||
|
||||
|
22
changelog.md
22
changelog.md
|
@ -4,9 +4,12 @@ title: "Change is good!"
|
|||
subtitle: "Feeling Responsive Theme Changelog"
|
||||
description: "History and changelog of Feeling Responsive Theme by Phlow Media."
|
||||
image:
|
||||
header: "header_unsplash_7.jpg"
|
||||
header: "header_unsplash_9.jpg"
|
||||
permalink: "/changelog/"
|
||||
---
|
||||
2014-09-12 // Version 0.6
|
||||
: Finally the [blogpage][1] has pagination and an [archive for all blog-posts][2] using the [foundation accordion][3].
|
||||
|
||||
2014-08-22 // Version 0.5
|
||||
: Better typograpyh, extended [documentation]({{ site.url}}/documentation/) and little subtle css-things to make *Feeling Responsive* a little better.
|
||||
|
||||
|
@ -23,4 +26,19 @@ permalink: "/changelog/"
|
|||
: Technical Theme Development Start
|
||||
|
||||
2014-06-23
|
||||
: First Ideas and scribbles at the beach in Bergen/Netherlands
|
||||
: First Ideas and scribbles at the beach in Bergen/Netherlands
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1]: {{ site.url }}/blog/
|
||||
[2]: {{ site.url }}/blog/archive/
|
||||
[3]: http://foundation.zurb.com/docs/components/accordion.html
|
||||
[4]: #
|
||||
[5]: #
|
||||
[6]: #
|
||||
[7]: #
|
||||
[8]: #
|
||||
[9]: #
|
||||
[10]: #
|
|
@ -100,8 +100,8 @@ You can choose to show a special full-width header image or not.
|
|||
|
||||
~~~
|
||||
image:
|
||||
header: thumbnail_image.jpg
|
||||
title: thumbnail_image.jpg
|
||||
header: header_image.jpg
|
||||
title: title_image.jpg
|
||||
thumb: thumbnail_image.jpg
|
||||
~~~
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ image:
|
|||
<a href="{{ site.url }}/blog/"><img src="{{ site.url }}/assets/img/unsplash_4.jpg" alt=""></a>
|
||||
<h2>Blog</h2>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||
Every good portfolio website has a blog with fresh news, thoughts and developments of your activities. <em>Feeling Responsive</em> offers you a fully functional blog, too. With an <a href="{{ site.url }}/blog/archive/">archive page</a> to give readers a quick overview of all your posts.
|
||||
</p>
|
||||
|
||||
<p><a class="button tiny radius" href="{{ site.url }}/blog/">More ›</a></p>
|
||||
|
|
|
@ -11,5 +11,9 @@ permalink: "/roadmap/"
|
|||
## ToDo
|
||||
|
||||
* SEO › Add metadescription to header.html and front matter
|
||||
* Add draft-templates for new pages/posts
|
||||
* Adding [Open Graph for Jekyll](https://gist.github.com/pathawks/1406355)
|
||||
* Gallery Post Format
|
||||
* Show how to use [Entypo-Icons](http://entypo.com)
|
||||
* Show how to use [Entypo-Icons](http://entypo.com)
|
||||
* Step-by-Step-Guide to customize *Feeling Responsive*
|
||||
* [<s>Adding pagination</s>](http://jekyllrb.com/docs/pagination/)
|
|
@ -130,6 +130,8 @@ This looks like **bold** text.
|
|||
|
||||
### <s>
|
||||
|
||||
It's nice getting things done. Just strike through <s>finished tasks</s>.
|
||||
|
||||
### <cite>
|
||||
|
||||
### <q>
|
||||
|
|
Reference in a new issue