2011-12-27 13:00:41 +00:00
|
|
|
{% extends 'noel/base.html' %}
|
2011-12-27 13:12:37 +00:00
|
|
|
{% load markup %}
|
2011-12-27 13:00:41 +00:00
|
|
|
|
|
|
|
{% 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;
|
2011-12-27 13:16:29 +00:00
|
|
|
padding-bottom:8px;
|
2011-12-27 13:20:14 +00:00
|
|
|
text-align:center;
|
2011-12-27 13:00:41 +00:00
|
|
|
text-transform:uppercase;
|
|
|
|
}
|
|
|
|
|
2011-12-27 13:27:18 +00:00
|
|
|
.markdownText p {
|
|
|
|
margin-bottom:8px;
|
|
|
|
}
|
|
|
|
|
2011-12-27 13:00:41 +00:00
|
|
|
.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">
|
2011-12-27 13:11:18 +00:00
|
|
|
<p class="staticTitle">{{ page.title }}</p>
|
2011-12-27 13:13:31 +00:00
|
|
|
{% comment %} <img src="{{ page.main_image.url }} " alt="{{ page.title }}" width="300"> {% endcomment %}
|
2011-12-27 13:11:18 +00:00
|
|
|
<p class="markdownText">{{ page.text|markdown }}</p>
|
2011-12-27 13:00:41 +00:00
|
|
|
|
|
|
|
</div><!-- SEARCH CONTENT CLOSING -->
|
|
|
|
</div><!-- SEARCH CONTAINER CLOSING -->
|
|
|
|
</div><!-- CENTER INNER -->
|
|
|
|
{% endblock %}
|
|
|
|
|