Merge pull request #200 from espern/layout-improvment

Add site subtitle and Google analytics to simple-bootstrap theme
This commit is contained in:
Justin Mayer
2014-02-25 13:05:28 +01:00
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{% if GOOGLE_ANALYTICS %}
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("{{GOOGLE_ANALYTICS}}");
pageTracker._trackPageview();
} catch(err) {}</script>
{% endif %}

View File

@@ -45,6 +45,7 @@
<li{% if author or tag %} class="active"{% endif %}{% block archclass %}{{ ARCHCLASS }}{% endblock archclass %}><a href="{{ SITEURL }}/archives.html">Archives</a></li> <li{% if author or tag %} class="active"{% endif %}{% block archclass %}{{ ARCHCLASS }}{% endblock archclass %}><a href="{{ SITEURL }}/archives.html">Archives</a></li>
</ul> </ul>
<h3 class="text-muted"><a href="{{ SITEURL }}">{{ SITENAME }}</a></h3> <h3 class="text-muted"><a href="{{ SITEURL }}">{{ SITENAME }}</a></h3>
<h2 class="text-muted">{{ SITESUBTITLE }}</h2>
</div> </div>
{% block content %} {% block content %}
{% endblock %} {% endblock %}
@@ -57,5 +58,6 @@
</address><!-- /#about --> </address><!-- /#about -->
</footer><!-- /#contentinfo --> </footer><!-- /#contentinfo -->
</div><!-- container --> </div><!-- container -->
{% include 'analytics.html' %}
</body> </body>
</html> </html>