add docs/ to generate github page
This commit is contained in:
32
docs/pages/news/news.html
Executable file
32
docs/pages/news/news.html
Executable file
@ -0,0 +1,32 @@
|
||||
---
|
||||
title: News
|
||||
sidebar: home_sidebar
|
||||
keywords: news, blog, updates, release notes, announcements
|
||||
permalink: news.html
|
||||
toc: false
|
||||
folder: news
|
||||
---
|
||||
<div class="home">
|
||||
|
||||
<div class="post-list">
|
||||
{% for post in site.posts limit:10 %}
|
||||
|
||||
|
||||
<h2><a class="post-link" href="{{ post.url | remove: "/" }}">{{ post.title }}</a></h2>
|
||||
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }} /
|
||||
{% for tag in post.tags %}
|
||||
|
||||
<a href="{{ "tag_" | append: tag | append: ".html"}}">{{tag}}</a>{% unless forloop.last %}, {% endunless%}
|
||||
|
||||
{% endfor %}</span>
|
||||
<p>{% if page.summary %} {{ page.summary | strip_html | strip_newlines | truncate: 160 }} {% else %} {{ post.content | truncatewords: 50 | strip_html }} {% endif %}</p>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
<p><a href="feed.xml"" class="btn btn-primary navbar-btn cursorNorm" role="button">RSS Subscribe{{tag}}</a></p>
|
||||
|
||||
<hr />
|
||||
<p>See more posts from the <a href="news_archive.html">News Archive</a>. </p>
|
||||
|
||||
|
||||
</div>
|
41
docs/pages/news/news_archive.html
Executable file
41
docs/pages/news/news_archive.html
Executable file
@ -0,0 +1,41 @@
|
||||
---
|
||||
title: News
|
||||
sidebar: mydoc_sidebar
|
||||
keywords: news, blog, updates, release notes, announcements
|
||||
permalink: news_archive.html
|
||||
toc: false
|
||||
folder: news
|
||||
---
|
||||
|
||||
<div class="home">
|
||||
|
||||
<div class="post-list">
|
||||
|
||||
|
||||
<section id="archive">
|
||||
<h3>This year's posts</h3>
|
||||
{%for post in site.posts %}
|
||||
{% unless post.next %}
|
||||
<ul class="this">
|
||||
{% else %}
|
||||
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
||||
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
|
||||
{% if year != nyear %}
|
||||
</ul>
|
||||
<h3>{{ post.date | date: '%Y' }}</h3>
|
||||
<ul class="past">
|
||||
{% endif %}
|
||||
{% endunless %}
|
||||
<li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url | remove: "/"}}">{{ post.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
<hr/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user