jekyll -> zola
This commit is contained in:
17
templates/article.html
Normal file
17
templates/article.html
Normal file
@ -0,0 +1,17 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block extra_head %}
|
||||
<link rel="stylesheet" href="/style/article.css">
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="article">
|
||||
<h1><a href="{{ page.permalink }}">{{ page.title }}</a><span class="home-link">[ <a href="/">homepage</a> ]</span></h1>
|
||||
|
||||
{{ page.content | safe }}
|
||||
|
||||
<hr>
|
||||
|
||||
<p><a href="mailto:jackbondpreston@outlook.com">email me</a> to have a conversation</p>
|
||||
</div>
|
||||
{% endblock content %}
|
Reference in New Issue
Block a user