This is an automated email from the ASF dual-hosted git repository. petko pushed a commit to branch preview/renameblog in repository https://gitbox.apache.org/repos/asf/openoffice-project.git
The following commit(s) were added to refs/heads/preview/renameblog by this push: new ed60324 added missing closing div and header statements ed60324 is described below commit ed60324a8a1efb84b5d075effe3845dd3618aaa7 Author: Peter Kovacs <pe...@apache.org> AuthorDate: Sun Jun 11 19:57:20 2023 +0200 added missing closing div and header statements --- theme/openoffice/templates/blog.html | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/theme/openoffice/templates/blog.html b/theme/openoffice/templates/blog.html index 01709f0..5598613 100644 --- a/theme/openoffice/templates/blog.html +++ b/theme/openoffice/templates/blog.html @@ -12,17 +12,19 @@ <div class="title"> <h2><a href="/blog/{{ article.slug }}.html">{{ article.title }}</a></h2> <p>Posted on: {{ article.date }}</p> - <p>{{ article.summary }}</p> - <footer> - <ul class="actions"> - <div style="text-align: right"><a href="/blog/{{ article.slug }}.html" class="button medium">Continue Reading</a></div> - </ul> - <ul class="stats"> - {% for tag in article.tags %} - <li><a href="#">{{ tag.name }}</a></li> - {% endfor %} - </ul> - </footer> + </div> + </header> + <p>{{ article.summary }}</p> + <footer> + <ul class="actions"> + <div style="text-align: right"><a href="/blog/{{ article.slug }}.html" class="button medium">Continue Reading</a></div> + </ul> + <ul class="stats"> + {% for tag in article.tags %} + <li><a href="#">{{ tag.name }}</a></li> + {% endfor %} + </ul> + </footer> </article> </div> </div>