A source/assets/media/blog/1684014872-wave.jpg => source/assets/media/blog/1684014872-wave.jpg +0 -0
A source/assets/media/blog/1684014878-wave.jpg => source/assets/media/blog/1684014878-wave.jpg +0 -0
A source/assets/media/blog/1684014885-wave.jpg => source/assets/media/blog/1684014885-wave.jpg +0 -0
M source/content/blog/article-1.html => source/content/blog/article-1.html +0 -2
@@ 1,5 1,3 @@
-<img src="{{ url }}media/wave.jpg" alt="Wave" width="800" height="249" />
-
<p>
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
M source/content/blog/article-2.html => source/content/blog/article-2.html +0 -2
@@ 1,5 1,3 @@
-<img src="{{ url }}media/wave.jpg" alt="Wave" width="800" height="249" />
-
<p>
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
M source/content/blog/article-3.html => source/content/blog/article-3.html +0 -2
@@ 1,5 1,3 @@
-<img src="{{ url }}media/wave.jpg" alt="Wave" width="800" height="249" />
-
<p>
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
M source/pages/blog/article-1.html.json => source/pages/blog/article-1.html.json +2 -1
@@ 11,5 11,6 @@
"sitemap"
],
"enabled": "1",
- "robots": "index,follow"
+ "robots": "index,follow",
+ "picture": "media/blog/1684014872-wave.jpg"
}=
\ No newline at end of file
M source/pages/blog/article-2.html.json => source/pages/blog/article-2.html.json +2 -1
@@ 11,5 11,6 @@
"sitemap"
],
"enabled": "1",
- "robots": "index,follow"
+ "robots": "index,follow",
+ "picture": "media/blog/1684014878-wave.jpg"
}=
\ No newline at end of file
M source/pages/blog/article-3.html.json => source/pages/blog/article-3.html.json +2 -1
@@ 11,5 11,6 @@
"sitemap"
],
"enabled": "1",
- "robots": "index,follow"
+ "robots": "index,follow",
+ "picture": "media/blog/1684014885-wave.jpg"
}=
\ No newline at end of file
M source/template/block/article.html => source/template/block/article.html +1 -1
@@ 1,7 1,7 @@
<article>
<p><a href="{{ url }}{{ $_path }}">{{ $title }}</a></p>
<p>
- <span>{{ $date }} by {{ $author }}</span>
+ <span>{{ $date_full }} by {{ $author }}</span>
</p>
<p>
{{ $intro }}
M source/template/post.html => source/template/post.html +2 -1
@@ 17,13 17,14 @@
<article>
<h2>{{ title }}</h2>
<p>
- <span>{{ date }} by {{ author }}</span>
+ <span>{{ date_full }} by {{ author }}</span>
</p>
<p>
{{ intro }}
</p>
</article>
<div class="content">
+ <img src="{{ url }}{{ picture }}" alt="{{ title }}" width="800" />
{% content %}
</div>
</div>