Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
shazz authored Sep 1, 2024
1 parent 88ad985 commit 4e9a600
Showing 1 changed file with 36 additions and 33 deletions.
69 changes: 36 additions & 33 deletions themes/pelican-chunk/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,15 @@
<body class="home blog custom-background {% if SINGLE_AUTHOR %}single-author{% endif %}">
<div id="container">
<div id="header">
<!-- <h1 id="site-title"><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1> -->
{% if SITESUBTITLE %}<h2 id="site-description">{{ SITESUBTITLE }}</h2>{% endif %}
<a href="/"><img src="{{ SITEURL }}/theme/back-devpac.png" width="100%"></a>
<!-- <h1 id="site-title"><a href="">Retrovirology</a></h1> -->
<picture class="header-banner">
<a href="/"><img src="/theme/back-devpac.png" width="100%"></a>
</picture>
<a href="/"><img src="/theme/disk.png" id="floppy" /></a>
</div><!-- /#banner -->

<div id="menu">
<nav id="menu">
<h2 class="hidden">Navigation</h2>
<div class="menu-navigation-container">
<ul id="menu-navigation" class="menu">
{% for title, link in MENUITEMS %}
Expand Down Expand Up @@ -83,39 +85,40 @@

</ul>
</div> <!--/#menu-navigation-container-->
</div><!-- /#menu -->
</nav>
</div><!-- /#menu -->

<div class="page-title">
{% block content_title %}{% endblock %}
</div>
<div class="page-title">
{% block content_title %}{% endblock %}
</div>

<div id="contents">
{% block content %}
{% endblock %}
</div>
<div id="contents">
{% block content %}
{% endblock %}
</div>

<div id="footer">
<p>{{ FOOTER_TEXT or 'Powered by <a href="http://getpelican.com">Pelican</a>, theme by <a
href="http://bunnyman.info">tBunnyMan</a>.' }}</p>
{% if GOOGLE_ANALYTICS %}
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ GOOGLE_ANALYTICS }}']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
{% endif %}
{% if DISQUS_SITENAME %}
{% include 'disqus_script.html' %}
{% endif %}
</div><!-- /#footer -->
<div id="footer">
<p>{{ FOOTER_TEXT or 'Powered by <a href="http://getpelican.com">Pelican</a>, theme by BunnyMan, slightly
modified by Mica and Shazz' }}</p>
{% if GOOGLE_ANALYTICS %}
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ GOOGLE_ANALYTICS }}']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
{% endif %}
{% if DISQUS_SITENAME %}
{% include 'disqus_script.html' %}
{% endif %}
</div><!-- /#footer -->
</div><!-- /#container -->
<div style="display:none"></div>
</body>

</html>
</html>

0 comments on commit 4e9a600

Please sign in to comment.