You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by pe...@apache.org on 2023/06/11 17:59:21 UTC

[openoffice-project] branch preview/renameBlog created (now ed60324)

This is an automated email from the ASF dual-hosted git repository.

petko pushed a change to branch preview/renameBlog
in repository https://gitbox.apache.org/repos/asf/openoffice-project.git


      at ed60324  added missing closing div and header statements

This branch includes the following new commits:

     new ed60324  added missing closing div and header statements

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[openoffice-project] 01/01: added missing closing div and header statements

Posted by pe...@apache.org.
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

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>