75 lines
1.7 KiB
HTML
75 lines
1.7 KiB
HTML
|
{% extends 'noel/base.html' %}
|
||
|
|
||
|
{% block extra_head %}
|
||
|
<link rel="stylesheet" href="/static/css/noel/inner.css" type="text/css" />
|
||
|
<script type="text/javascript" src="/static/js/search.js"></script>
|
||
|
|
||
|
<style type="text/css">
|
||
|
|
||
|
.staticTitle {
|
||
|
font-size:24px;
|
||
|
font-family:'Century Gothic', Helvetica, Arial, 'DejaVu Sans', sans-serif;
|
||
|
color:#f7bd00;
|
||
|
padding:8px;
|
||
|
text-transform:uppercase;
|
||
|
}
|
||
|
|
||
|
.markdownText h1{
|
||
|
font-size:14px;
|
||
|
font-family:'Century Gothic', Helvetica, Arial, 'DejaVu Sans', sans-serif;
|
||
|
color:#f7bd00;
|
||
|
}
|
||
|
|
||
|
.markdownText h2{
|
||
|
font-size:16px;
|
||
|
font-family:'Century Gothic', Helvetica, Arial, 'DejaVu Sans', sans-serif;
|
||
|
color:#f7bd00;
|
||
|
}
|
||
|
|
||
|
.markdownText h3{
|
||
|
font-size:18px;
|
||
|
font-family:'Century Gothic', Helvetica, Arial, 'DejaVu Sans', sans-serif;
|
||
|
color:#f7bd00;
|
||
|
}
|
||
|
|
||
|
.markdownText h4{
|
||
|
font-size:20px;
|
||
|
font-family:'Century Gothic', Helvetica, Arial, 'DejaVu Sans', sans-serif;
|
||
|
color:#f7bd00;
|
||
|
}
|
||
|
|
||
|
.markdownText h5{
|
||
|
font-size:22px;
|
||
|
font-family:'Century Gothic', Helvetica, Arial, 'DejaVu Sans', sans-serif;
|
||
|
color:#f7bd00;
|
||
|
}
|
||
|
|
||
|
.markdownText h6{
|
||
|
font-size:24px;
|
||
|
font-family:'Century Gothic', Helvetica, Arial, 'DejaVu Sans', sans-serif;
|
||
|
color:#f7bd00;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
|
||
|
|
||
|
{% block content %}
|
||
|
<div id="centerInner">
|
||
|
<div id="shadow">
|
||
|
</div>
|
||
|
|
||
|
<div id="searchContainer">
|
||
|
<div id="searchContent">
|
||
|
<p class="staticTitle">{{ static_title }}</p>
|
||
|
<img src="{{ static_img }} " alt="{{ static_img_title }}" width="300">
|
||
|
<p class="markdownText">{{ static_text|markdown }}</p>
|
||
|
|
||
|
</div><!-- SEARCH CONTENT CLOSING -->
|
||
|
</div><!-- SEARCH CONTAINER CLOSING -->
|
||
|
</div><!-- CENTER INNER -->
|
||
|
{% endblock %}
|
||
|
|