This is an automated email from the ASF dual-hosted git repository. wave pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/bval-site.git
commit e2cb2d646799a3e9d8cda697e514fb41b71a9433 Author: Dave Fisher <[email protected]> AuthorDate: Tue Jun 1 11:17:06 2021 -0700 add requirements and fix base.html --- requirements.txt | 1 + theme/apache/templates/base.html | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..fa95caf --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +pelican diff --git a/theme/apache/templates/base.html b/theme/apache/templates/base.html index ad10240..0726dc5 100644 --- a/theme/apache/templates/base.html +++ b/theme/apache/templates/base.html @@ -25,7 +25,7 @@ under the License. <meta name="author" content="[email protected]" /> <META http-equiv="Content-Type" content="text/html;charset=UTF-8" /> - <META name="Description" content="Apache BVal -- {% block title %}{% endblock %}" /> + <META name="Description" content="Apache BVal -- {{ page.title }}" /> <META name="Keywords" content="Apache BVal Bean Validation JSR-303 JavaEE6" /> <META name="Owner" content="[email protected]" /> <META name="Robots" content="index, follow" /> @@ -120,7 +120,7 @@ under the License. </div> </div> - <div class="container" id="BValContent_{% block title %}{% endblock %}"> + <div class="container" id="BValContent_{{ page.title }}"> {% block content %}{% endblock %}
