Fix misc styling bugs.
- Change header and site name colors - Fix heading sizes for pages and archives - Change navigation link color - Fix syntax highlighting. Now using solarized theme - Fix HTML lists using list-style-position - Increased spacing between posts - Update foundation CSS, JS files
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<h1>Archives</h1>
|
||||
<h3>Archives</h3>
|
||||
|
||||
<table class="table-archive">
|
||||
<tbody>
|
||||
@@ -14,4 +14,4 @@
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
@@ -6,10 +6,10 @@
|
||||
|
||||
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
||||
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/normalize.css">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/foundation.min.css">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/normalize.css" />
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/foundation.min.css" />
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css" />
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css" />
|
||||
<script src="{{ SITEURL }}/theme/js/custom.modernizr.js"></script>
|
||||
</head>
|
||||
|
||||
@@ -30,12 +30,12 @@
|
||||
<div class="large-9 columns">
|
||||
<ul class="button-group navigation">
|
||||
{% for title, link in MENUITEMS %}
|
||||
<li><a href="{{ link }}" class="button small">{{ title }}</a></li>
|
||||
<li><a href="{{ link }}" class="button secondary small">{{ title }}</a></li>
|
||||
{% endfor %}
|
||||
|
||||
{% if DISPLAY_PAGES_ON_MENU %}
|
||||
{% for page in PAGES %}
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}" class="button small">{{ page.title }}</a></li>
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}" class="button secondary small">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</ul>
|
||||
@@ -110,4 +110,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</footer>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}{{ page.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<h1>{{ page.title }}</h1>
|
||||
<h3>{{ page.title }}</h3>
|
||||
{% import 'translations.html' as translations with context %}
|
||||
{{ translations.translations_for(page) }}
|
||||
{% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">PDF</a>{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user