Add some 'Getting Started' content

This commit is contained in:
Thomas Busby
2018-05-26 22:16:07 +02:00
parent 8b9299e83a
commit 6ca0af9420
8 changed files with 125 additions and 63 deletions

View File

@@ -163,7 +163,7 @@ layout: compress
<ul class="sidebar-nav">
<strong>Similar Resources</strong>
{% for i in site.similar_resources %}
<li><a class="about" href="{{ i.url }}">{{ i.text }}</a></li>
<li><a class="about" href="{{ i.url }}" target="_blank">{{ i.text }}</a></li>
{% endfor %}
</ul>
</div>

View File

@@ -6,11 +6,6 @@ layout: default
</header>
<span class="time">{{ page.date | date_to_string }}</span>
{% if page.categories %}
<span class="categories">
&raquo; {% for category in page.categories %}<a href="/category/{{ category }}">{{ category }}</a>{% if forloop.last == false %}, {% endif %}{% endfor %}
</span>
{% endif %}
<div class="content">
<div class="post">{{ content }}</div>

View File

@@ -0,0 +1,15 @@
---
layout: default
---
<div class="index-header" markdown='1'>
<h1>{{ page.title }}</h1>
</div>
<hr>
{{ content }}
<hr>
<a href="/">Return to Home</a>