a new start
This commit is contained in:
41
_layouts/post.html
Normal file
41
_layouts/post.html
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
# Copyright (c) 2018 Florian Klampfer <https://qwtel.com/>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
layout: base
|
||||
---
|
||||
|
||||
{% assign version = jekyll.version | split:'.' %}
|
||||
{% assign major = version[0] | plus:0 %}
|
||||
{% assign minor = version[1] | plus:0 %}
|
||||
{% assign patch = version[2] | plus:0 %}
|
||||
|
||||
{% include_cached components/post.html post=page no_link_title=true no_excerpt=true hide_image=page.hide_image hide_description=page.hide_description show_gallery=page.show_gallery show_video=page.video show_iframe=page.iframe hide_dates=page.hide_dates %}
|
||||
|
||||
{% include components/dingbat.html %}
|
||||
|
||||
{% assign addons = page.addons | default:site.pivoine.post_addons %}
|
||||
{% unless addons %}{% assign addons = "about,newsletter,related,random" | split:"," %}{% endunless %}
|
||||
{% for addon in addons %}
|
||||
{% case addon %}
|
||||
{% when 'about' %}
|
||||
{% include_cached components/about.html author=page.author %}
|
||||
{% when 'related' %}
|
||||
{% include_cached components/related-posts.html %}
|
||||
{% when 'comments' %}
|
||||
{% include body/comments.html %}
|
||||
{% else %}
|
||||
{% endcase %}
|
||||
{% endfor %}
|
||||
Reference in New Issue
Block a user