mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
Integrate a blog into the site
This commit is contained in:
parent
63fb559893
commit
1902a40354
4 changed files with 32 additions and 1 deletions
|
@ -29,6 +29,7 @@ inter_post_navigation: false
|
||||||
our_values_url: "/our-values/"
|
our_values_url: "/our-values/"
|
||||||
jobs_url: "/jobs/"
|
jobs_url: "/jobs/"
|
||||||
podcast_url: "/podcast/"
|
podcast_url: "/podcast/"
|
||||||
|
blog_url: "/blog/"
|
||||||
technology_url: "/technology/"
|
technology_url: "/technology/"
|
||||||
community_hub_url: "/community-hub/"
|
community_hub_url: "/community-hub/"
|
||||||
contact_url: "/contact/"
|
contact_url: "/contact/"
|
||||||
|
|
|
@ -20,6 +20,16 @@ communities:
|
||||||
alt: podcast
|
alt: podcast
|
||||||
url: /podcast/
|
url: /podcast/
|
||||||
internal: true
|
internal: true
|
||||||
|
- text: >
|
||||||
|
### Blog
|
||||||
|
|
||||||
|
Now you can also read about what is and has been going on at Safing!
|
||||||
|
#
|
||||||
|
image:
|
||||||
|
icon: huge alternate feather icon
|
||||||
|
alt: blog
|
||||||
|
url: /blog/
|
||||||
|
internal: true
|
||||||
- text: >
|
- text: >
|
||||||
### Github
|
### Github
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
<span>Resources</span>
|
<span>Resources</span>
|
||||||
<li><a href="{{ site.technology_url }}">Technology</a></li>
|
<li><a href="{{ site.technology_url }}">Technology</a></li>
|
||||||
<li><a href="{{ site.whitepaper_url }}Gate17.pdf">Whitepaper</a></li>
|
<li><a href="{{ site.whitepaper_url }}Gate17.pdf">Whitepaper</a></li>
|
||||||
<li class="vhidden">.</li>
|
<li><a href="{{ site.blog_url }}">Blog</a></li>
|
||||||
<li class="vhidden">.</li>
|
<li class="vhidden">.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
20
blog/index.html
Normal file
20
blog/index.html
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
title: The Safing Blog
|
||||||
|
layout: page_column
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="ui divided items">
|
||||||
|
{% for post in site.posts %}
|
||||||
|
<div class="item">
|
||||||
|
<div class="middle aligned content">
|
||||||
|
<a class="header" href="{{ post.url }}">{{ post.title }}</a>
|
||||||
|
<div class="meta">
|
||||||
|
<span class="ui small text">
|
||||||
|
<i class="calendar alternate icon"></i>{{ post.date | date: "%-d. %b %Y" }}
|
||||||
|
<i class="user icon"></i>{{ post.author }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
Loading…
Add table
Reference in a new issue