rscnt
8f6461fd63
This template holds the base structure for every page in the site. It expose the following blocks: + base_header: This block is used to display the big banner and title image for the main style of the site. When overriding this block always prefere the use of include, since the amount of markup needed for the header is quite a lot. For an example of what should be in this block look at: cms/ungleich.ch/_header_base.html. + block_content: Holds the main content for the page, it delcares a placeholder "default". This commit also includes the following templates: cms/ungleich.ch/_footer.html: Markup for the footer of the page. TODO: Social links. cms/ungleich.ch/_header_base.html: Markup for the big image with the title and summary of the page. cms/ungleich.ch/_menu.html: Markup for the main navigation markup for the entire site. And the required static files. Signed-off-by: rscnt <rascnt@gmail.com>
40 lines
945 B
HTML
40 lines
945 B
HTML
{% load cms_tags %}
|
|
<hr />
|
|
<!-- Footer -->
|
|
<footer>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
|
<ul class="list-inline text-center">
|
|
<li>
|
|
<a href="#">
|
|
<span class="fa-stack fa-lg">
|
|
<i class="fa fa-circle fa-stack-2x"></i>
|
|
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#">
|
|
<span class="fa-stack fa-lg">
|
|
<i class="fa fa-circle fa-stack-2x"></i>
|
|
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#">
|
|
<span class="fa-stack fa-lg">
|
|
<i class="fa fa-circle fa-stack-2x"></i>
|
|
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<p class="copyright text-muted text-centered">
|
|
{% static_placeholder "footer_copyright" %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|