This commit is contained in:
parent
c912e4bafa
commit
be430fd461
5 changed files with 22 additions and 4 deletions
|
@ -6,3 +6,4 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
||||||
|
|
||||||
gem "jekyll"
|
gem "jekyll"
|
||||||
gem "webrick"
|
gem "webrick"
|
||||||
|
gem 'jekyll-feed'
|
||||||
|
|
|
@ -29,6 +29,8 @@ GEM
|
||||||
rouge (~> 3.0)
|
rouge (~> 3.0)
|
||||||
safe_yaml (~> 1.0)
|
safe_yaml (~> 1.0)
|
||||||
terminal-table (~> 2.0)
|
terminal-table (~> 2.0)
|
||||||
|
jekyll-feed (0.15.1)
|
||||||
|
jekyll (>= 3.7, < 5.0)
|
||||||
jekyll-sass-converter (2.1.0)
|
jekyll-sass-converter (2.1.0)
|
||||||
sassc (> 2.0.1, < 3.0)
|
sassc (> 2.0.1, < 3.0)
|
||||||
jekyll-watch (2.2.1)
|
jekyll-watch (2.2.1)
|
||||||
|
@ -63,6 +65,7 @@ PLATFORMS
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
jekyll
|
jekyll
|
||||||
|
jekyll-feed
|
||||||
webrick
|
webrick
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
permalink: blog/:title
|
permalink: blog/:title
|
||||||
|
|
||||||
|
plugins:
|
||||||
|
- jekyll-feed
|
||||||
|
|
||||||
|
# markdown formatting
|
||||||
kramdown:
|
kramdown:
|
||||||
header_offset: 1
|
header_offset: 1
|
||||||
typographic_syms:
|
typographic_syms:
|
||||||
|
@ -7,3 +12,11 @@ kramdown:
|
||||||
ndash: --
|
ndash: --
|
||||||
laquo: "<<"
|
laquo: "<<"
|
||||||
raquo: ">>"
|
raquo: ">>"
|
||||||
|
|
||||||
|
# atom feed information
|
||||||
|
url: https://ellpeck.de
|
||||||
|
title: Ellpeck.de
|
||||||
|
description: Ellpeck's little internet place
|
||||||
|
author: Ellpeck
|
||||||
|
feed:
|
||||||
|
posts_limit: 100
|
|
@ -8,8 +8,8 @@
|
||||||
<h1>📔 Blog</h1>
|
<h1>📔 Blog</h1>
|
||||||
<p>
|
<p>
|
||||||
This is my blog, where I post about gaming, programming and life. The featured posts are the ones you'll probably be most interested in, but you can select a different category to see every post.
|
This is my blog, where I post about gaming, programming and life. The featured posts are the ones you'll probably be most interested in, but you can select a different category to see every post.
|
||||||
<br><em>Please be advised that some posts, especially short stories, may contain mature content.</em>
|
|
||||||
</p>
|
</p>
|
||||||
|
<p>📰 You can also subscribe to this blog through the <a href="/feed.xml">Atom Feed</a>.</p>
|
||||||
<div id="blog-cats">
|
<div id="blog-cats">
|
||||||
{% include tagbtn.html tag="All" %}
|
{% include tagbtn.html tag="All" %}
|
||||||
{%- assign sorted = site.tags | sort -%}
|
{%- assign sorted = site.tags | sort -%}
|
||||||
|
|
|
@ -18,8 +18,9 @@
|
||||||
|
|
||||||
<a class="nav-item nav-link" href="../#blog-{{ tag | slugify }}">🏠 Back to Main Page</a>
|
<a class="nav-item nav-link" href="../#blog-{{ tag | slugify }}">🏠 Back to Main Page</a>
|
||||||
{% if prev %}
|
{% if prev %}
|
||||||
<a class="nav-item nav-link" href="{{ posts[prev].url }}">⏮️ Previous {{ tag }} Post</a>
|
<a class="nav-item nav-link" href="{{ posts[prev].url }}">⏮️ Previous in {{ tag }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if next %}
|
{% if next %}
|
||||||
<a class="nav-item nav-link" href="{{ posts[next].url }}">⏭️ Next {{ tag }} Post</a>
|
<a class="nav-item nav-link" href="{{ posts[next].url }}">⏭️ Next in {{ tag }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<a class="nav-item nav-link" href="/feed.xml">📰 Atom Feed</a>
|
Loading…
Reference in a new issue