File: page.html

package info (click to toggle)
taskflow 3.9.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 45,948 kB
  • sloc: cpp: 39,058; xml: 35,572; python: 12,935; javascript: 1,732; makefile: 59; sh: 16
file content (14 lines) | stat: -rw-r--r-- 425 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends 'base.html' %}

{% block title %}HELLO THIS TEMPLATE OVERRIDES THINGS{% endblock %}

{% block main %}
        <h1>HELLO THIS TEMPLATE OVERRIDES THINGS</h1>
        {% if compound.brief %}
        <p>{{ compound.brief }}</p>
        {% endif %}
        <p>But not all, the base.html is taken from the fallback.</p>
        {% if compound.description %}
{{ compound.description }}
        {% endif %}
{% endblock %}