mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
29 lines
874 B
HTML
29 lines
874 B
HTML
{% include head.html %}
|
|
<body>
|
|
{% include navigation.html %}
|
|
{% include jumbotron.html %}
|
|
<div class='container'>
|
|
<h2>{{ page.title }}</h2>
|
|
{% assign author = site.data.authors[page.author] %}
|
|
{% if author == nil %}
|
|
{% assign author = site.name %}
|
|
{% endif %}
|
|
<strong>{{ author.name }}</strong> | <time>{{ page.date | date: '%B %-d, %Y'}}
|
|
{{ content }}
|
|
<div class='btn-group pull-right' role='group'>
|
|
{% if page.previous %}
|
|
<a class='btn btn-default' href='{{ site.baseurl }}{{ page.previous.url }}'>Previous</a>
|
|
{% else %}
|
|
<span class='btn btn-default disabled'>Previous</span>
|
|
{% endif %}
|
|
{% if page.next %}
|
|
<a class='btn btn-default' href='{{ site.baseurl }}{{ page.next.url }}'>Next</a>
|
|
{% else %}
|
|
<span class='btn btn-default disabled'>Next</span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|