18 lines
No EOL
445 B
HTML
18 lines
No EOL
445 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
{% set name = page.title %}
|
|
<title>About {{name}}</title>
|
|
<link rel="stylesheet" href={{get_url(path="css/about.css")}}>
|
|
{% set css_path = get_url(path="css") ~ "/" ~ name ~ "-style.css" %}
|
|
<link rel="stylesheet" href="{{css_path}}"/>
|
|
{% endblock head %}
|
|
|
|
{% block content %}
|
|
<h1 class="title">
|
|
{{ page.title }}
|
|
</h1>
|
|
<p class = "about-content">
|
|
{{ page.content | safe }}
|
|
</p>
|
|
{% endblock content %} |