Co-authored-by: Vladimír Vondruš <mosra@centrum.cz>
compound.breadcrumb = [(state.doxyfile['PROJECT_NAME'], 'index.html')]
template = env.get_template('page.html')
rendered = template.render(compound=compound,
- DOXYGEN_VERSION='0',
+ DOXYGEN_VERSION=None,
FILENAME='index.html',
SEARCHDATA_FORMAT_VERSION=searchdata_format_version,
**state.doxyfile)
<div class="m-row">
<div class="m-col-l-10 m-push-l-1">
{% if M_PAGE_FINE_PRINT == '[default]' %}
- <p>{{ PROJECT_NAME }}{% if PROJECT_BRIEF %} {{ PROJECT_BRIEF }}{% endif %}. Created with <a href="https://doxygen.org/">Doxygen</a> {{ DOXYGEN_VERSION }} and <a href="https://mcss.mosra.cz/">m.css</a>.</p>
+ <p>{{ PROJECT_NAME }}{% if PROJECT_BRIEF %} {{ PROJECT_BRIEF }}{% endif %}. Created with {% if DOXYGEN_VERSION %}<a href="https://doxygen.org/">Doxygen</a> {{ DOXYGEN_VERSION }} and {% endif %}<a href="https://mcss.mosra.cz/">m.css</a>.</p>
{% else %}
{{ M_PAGE_FINE_PRINT|replace('{doxygen_version}', DOXYGEN_VERSION) }}
{% endif %}
XML_PROGRAMLISTING = NO
CASE_SENSE_NAMES = YES
-##! M_PAGE_FINE_PRINT =
+# Keeping the default M_PAGE_FINE_PRINT to test that no "Doxygen version 0" is
+# added to the footer.
+
##! M_THEME_COLOR =
##! M_FAVICON =
##! M_LINKS_NAVBAR1 =
</div>
</div>
</article></main>
+<footer><nav>
+ <div class="m-container">
+ <div class="m-row">
+ <div class="m-col-l-10 m-push-l-1">
+ <p>My Project. Created with <a href="https://mcss.mosra.cz/">m.css</a>.</p>
+ </div>
+ </div>
+ </div>
+</nav></footer>
</body>
</html>