tag.html 517 B

1234567891011121314151617181920
  1. {% extends "base.html" %}
  2. {% block head %}
  3. {% block title %}<title>#{{ tag.name }} - {{SITENAME}}</title>{% endblock title %}
  4. {{ super() }}
  5. <meta name="robots" content="noindex, follow" />
  6. <style>
  7. .card-content-header {
  8. margin-bottom: 2rem;
  9. }
  10. </style>
  11. {% endblock %}
  12. {% block content %}
  13. <!-- Main tag -->
  14. <div class="card-content-header">
  15. <h4 class="title is-4 has-text-centered">#{{ tag }}</h4>
  16. </div>
  17. {{ super() }}
  18. <!--/Main tag -->
  19. {% endblock %}