Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d49f47b63a | |||
| 9365ea89cf |
+2
-2
@@ -16,10 +16,10 @@
|
|||||||
</a>
|
</a>
|
||||||
</h1>
|
</h1>
|
||||||
<p class="item-meta">
|
<p class="item-meta">
|
||||||
<i class="fa fa-calendar" title="Date"></i> {{ post.published_on | date: "dddd, MMMM d, yyyy" }}
|
<i class="fa fa-calendar" title="Date"></i> {{ post.published_on | format_date: "dddd, MMMM d, yyyy" }}
|
||||||
{% if logged_on %} • <a href="{{ post | edit_post_link }}">Edit Post</a>{% endif %}
|
{% if logged_on %} • <a href="{{ post | edit_post_link }}">Edit Post</a>{% endif %}
|
||||||
</p>
|
</p>
|
||||||
{% include_template "_episode" %}
|
{% include "_episode" %}
|
||||||
{{ post.text }}
|
{{ post.text }}
|
||||||
</article>
|
</article>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
+2
-2
@@ -35,8 +35,8 @@
|
|||||||
rel="noopener">
|
rel="noopener">
|
||||||
Bit Badger Solutions
|
Bit Badger Solutions
|
||||||
</a> • Powered by
|
</a> • Powered by
|
||||||
<a href="https://github.com/bit-badger/myWebLog/tree/v2" target="_blank" rel="noopener">myWebLog</a> •
|
<a href="https://bitbadger.solutions/open-source/myweblog" target="_blank" rel="noopener">myWebLog</a> •
|
||||||
{% if logged_on %}
|
{% if user_id %}
|
||||||
<a href="{{ "admin/dashboard" | relative_link }}">Dashboard</a>
|
<a href="{{ "admin/dashboard" | relative_link }}">Dashboard</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ "user/log-on" | relative_link }}">Log On</a>
|
<a href="{{ "user/log-on" | relative_link }}">Log On</a>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<article class="item">
|
<article class="item">
|
||||||
<h1 class="item-heading">{{ post.title }}</h1>
|
<h1 class="item-heading">{{ post.title }}</h1>
|
||||||
{%- if logged_on %}<p class="item-meta"><a href="{{ post | edit_post_link }}">Edit Post</a></p>{% endif %}
|
{%- if logged_on %}<p class="item-meta"><a href="{{ post | edit_post_link }}">Edit Post</a></p>{% endif %}
|
||||||
{% include_template "_episode" %}
|
{% include "_episode" %}
|
||||||
{{ post.text }}
|
{{ post.text }}
|
||||||
</article>
|
</article>
|
||||||
<nav aria-label="pagination">
|
<nav aria-label="pagination">
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
<h4 class="item-heading">Date</h4>
|
<h4 class="item-heading">Date</h4>
|
||||||
<div class="date-posted">
|
<div class="date-posted">
|
||||||
<i class="fa fa-calendar" title="Date" aria-hidden="true"></i>
|
<i class="fa fa-calendar" title="Date" aria-hidden="true"></i>
|
||||||
{{ post.published_on | date: "dddd, MMMM d, yyyy" }}
|
{{ post.published_on | format_date: "dddd, MMMM d, yyyy" }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{%- assign has_ot = false -%}
|
{%- assign has_ot = false -%}
|
||||||
|
|||||||
+1
-1
@@ -1,2 +1,2 @@
|
|||||||
A Word from the Word
|
A Word from the Word
|
||||||
1.1
|
2
|
||||||
|
|||||||
Reference in New Issue
Block a user