Added CSS styles for tags, color scheme for code highlighting, social links and icons, and improvements in the archive page.
10 lines
262 B
HTML
10 lines
262 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ page.title }}- {{ SITENAME }}{% endblock %}
|
|
{% block content %}
|
|
<div role="main" class="content clearfix">
|
|
<div class="post wrapper">
|
|
<h1>{{ page.title }}</h1>
|
|
{{ page.content }}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |