parent
0280376150
commit
66de2fc35a
|
@ -88,7 +88,7 @@ $(function(){
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
A running example can be found in my comparison between [Jekyll, Hugo and Winthersmith](http://fredrikloch.me/blog/2014-08-12-Jekyll-and-its-alternatives-from-a-site-generation-point-of-view/)
|
A running example can be found in my comparison between [Jekyll, Hugo and Winthersmith](http://fredrikloch.me/post/2014-08-12-Jekyll-and-its-alternatives-from-a-site-generation-point-of-view/)
|
||||||
Gallery
|
Gallery
|
||||||
-
|
-
|
||||||
To add a gallery to the site we use basic html together with [lightGallery](http://sachinchoolur.github.io/lightGallery/index.html) to create a responsive light-box gallery.
|
To add a gallery to the site we use basic html together with [lightGallery](http://sachinchoolur.github.io/lightGallery/index.html) to create a responsive light-box gallery.
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
</div>
|
</div>
|
||||||
</br>
|
</br>
|
||||||
<h4>
|
<h4>
|
||||||
<a href="{{ .Site.BaseURL }}/blog/">Archive</a>
|
<a href="{{ .Site.BaseURL }}/post/">Archive</a>
|
||||||
</h4>
|
</h4>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</span>
|
</span>
|
||||||
<header class="
|
<header class="
|
||||||
{{ if .IsNode }}
|
{{ if .IsNode }}
|
||||||
{{ if or (eq .URL "/blog/") (in .URL "/tags/") (in .URL "/categories/") }}
|
{{ if or (eq .URL "/post/") (in .URL "/tags/") (in .URL "/categories/") }}
|
||||||
panel-cover panel-cover--collapsed
|
panel-cover panel-cover--collapsed
|
||||||
{{ else }}
|
{{ else }}
|
||||||
panel-cover
|
panel-cover
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
// SECTIONS
|
// SECTIONS
|
||||||
// ------------------------------
|
// ------------------------------
|
||||||
|
|
||||||
@import 'sections/blog.scss';
|
@import 'sections/post.scss';
|
||||||
|
|
||||||
// ------------------------------
|
// ------------------------------
|
||||||
// COMPONENTS
|
// COMPONENTS
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
@import 'components/buttons.scss';
|
@import 'components/buttons.scss';
|
||||||
@import 'components/navigation.scss';
|
@import 'components/navigation.scss';
|
||||||
@import 'components/pagination.scss';
|
@import 'components/pagination.scss';
|
||||||
@import 'components/blog-list.scss';
|
@import 'components/post-list.scss';
|
||||||
|
|
||||||
// ------------------------------
|
// ------------------------------
|
||||||
// MEDIA QUERIES
|
// MEDIA QUERIES
|
||||||
|
|
Loading…
Reference in New Issue