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

[openoffice-project] branch main updated: Added closing tags for DIV and HEADER, fixed whitespaces

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

marcus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-project.git


The following commit(s) were added to refs/heads/main by this push:
     new 16a0a6d  Added closing tags for DIV and HEADER, fixed whitespaces
16a0a6d is described below

commit 16a0a6dae86215a2f63dd5291c3330d19e606a97
Author: Marcus <ma...@apache.org>
AuthorDate: Mon Jun 19 21:56:29 2023 +0200

    Added closing tags for DIV and HEADER, fixed whitespaces
---
 theme/openoffice/templates/blog.html | 48 +++++++++++++++++++-----------------
 1 file changed, 25 insertions(+), 23 deletions(-)

diff --git a/theme/openoffice/templates/blog.html b/theme/openoffice/templates/blog.html
index 01709f0..7abcdd9 100644
--- a/theme/openoffice/templates/blog.html
+++ b/theme/openoffice/templates/blog.html
@@ -3,30 +3,32 @@
 <div>
     <title>Blog</title>
     <div>
-            {% for article in articles %}
-            <!-- Post -->
-            <div class="row">
-                <div class="callout">
-                    <article class="post">
-                        <header>
-                            <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>
-                    </article>
-                </div>
+        {% for article in articles %}
+        <!-- Post -->
+        <div class="row">
+            <div class="callout">
+                <article class="post">
+                    <header>
+                        <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>
+                </article>
             </div>
+        </div>
         {% endfor %}
     </div>
-    </div>
+</div>
 {% endblock %}
\ No newline at end of file