This is an automated email from the ASF dual-hosted git repository. wave pushed a commit to branch page-cleanup in repository https://gitbox.apache.org/repos/asf/tooling-docs.git
commit 3a28d1478086cacf1df07325d7356cee365fca49 Author: Dave Fisher <[email protected]> AuthorDate: Sun Nov 30 08:21:55 2025 -0800 Cleanup page templates --- content/theme/templates/article.html | 1 + content/theme/templates/blog.html | 5 +---- content/theme/templates/index.html | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/content/theme/templates/article.html b/content/theme/templates/article.html index 251bf1a..a70662c 100644 --- a/content/theme/templates/article.html +++ b/content/theme/templates/article.html @@ -17,6 +17,7 @@ {% include "footer.html" %} </main> + {% include "post.html" %} </body> </html> {% endblock %} diff --git a/content/theme/templates/blog.html b/content/theme/templates/blog.html index 5890af4..098a0ac 100644 --- a/content/theme/templates/blog.html +++ b/content/theme/templates/blog.html @@ -11,16 +11,13 @@ <body class="d-flex flex-column h-100"> <main class="flex-shrink-0"> <div> - {% include "menu.html" %} {% include "breadcrumbs.html" %} - {% include "blogindex.html" %} - {% include "footer.html" %} </div> </main> - <script>hljs.initHighlightingOnLoad();</script> + {% include "post.html" %} </body> </html> {% endblock %} diff --git a/content/theme/templates/index.html b/content/theme/templates/index.html index f881a9d..5c70b20 100644 --- a/content/theme/templates/index.html +++ b/content/theme/templates/index.html @@ -16,7 +16,7 @@ {% include "footer.html" %} </div> </main> - <script>hljs.initHighlightingOnLoad();</script> + {% include "post.html" %} </body> </html> {% endblock %} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
