Updates
This commit is contained in:
Executable → Regular
Executable → Regular
Executable → Regular
+5
-1
@@ -1,6 +1,9 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}{{ super() }} : {{ article.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div class="entry">
|
||||
<header>
|
||||
<h1><a href="{{ SITEURL }}" id="site-title"> {#{{ SITENAME }}#} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1>
|
||||
@@ -23,7 +26,8 @@
|
||||
document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the comments.</noscript>
|
||||
{% endif %}
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Executable → Regular
Executable → Regular
Executable → Regular
+4
-9
@@ -22,14 +22,8 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div class="entry">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
|
||||
<div id="sidebar" style="width:25%">
|
||||
<h1><a href="{{ SITEURL }} " title="title">{{ SITENAME }}</a></h1>
|
||||
@@ -38,8 +32,9 @@
|
||||
<ul>
|
||||
<li><a href="{{ SITEURL }}/index.html">Home</a></li>
|
||||
<li><a href="{{ SITEURL }}/posts.html">Articles</a></li>
|
||||
<li><a href="{{ SITEURL }}/portfolio.html">Photography</a></li>
|
||||
<li><a href="https://portfolio.leanderhutton.com/">Photography</a></li>
|
||||
<li><a href="{{ SITEURL }}/about.html">About</a></li>
|
||||
<li><a href="{{ SITEURL }}/recommendations.html">What I Use</a></li>
|
||||
{% if categories|length > 1 %}
|
||||
<!-- <li><a href="{{ SITEURL }}/categories.html">Categories</a></li>
|
||||
{% endif %}
|
||||
|
||||
Executable → Regular
+5
@@ -1,8 +1,13 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div class="entry">
|
||||
<ul>
|
||||
{% for category, articles in categories %}
|
||||
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
Executable → Regular
+5
-1
@@ -1,6 +1,9 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content_title %}{% endblock %}
|
||||
{% block content %}
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div class="entry">
|
||||
{% if articles %}
|
||||
|
||||
<header>
|
||||
@@ -38,5 +41,6 @@
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{% endblock content %}
|
||||
|
||||
Executable → Regular
+3
-77
@@ -1,83 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type="text/css" />
|
||||
<link href="{{ SITEURL }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" />
|
||||
{% if FEED_RSS %}
|
||||
<link href="{{ SITEURL }}/{{ FEED_RSS }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" />
|
||||
{% endif %}
|
||||
|
||||
<!--[if IE]>
|
||||
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||||
|
||||
<!--[if lte IE 7]>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="{{ SITEURL }}/css/ie.css"/>
|
||||
<script src="{{ SITEURL }}/js/IE8.js" type="text/javascript"></script><![endif]-->
|
||||
|
||||
<!--[if lt IE 7]>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="{{ SITEURL }}/css/ie6.css"/><![endif]-->
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div id="landing" class="entry">
|
||||
{{ page.content }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="sidebar" style="width:25%">
|
||||
<h1><a href="{{ SITEURL }} " title="title">{{ SITENAME }}</a></h1>
|
||||
<span class="description">{{ DESCRIPTION }} </span>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="posts.html">Articles</a></li>
|
||||
<li><a href="portfolio.html">Photography</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
{% if categories|length > 1 %}
|
||||
<!-- <li><a href="{{ SITEURL }}/categories.html">Categories</a></li>
|
||||
{% endif %}
|
||||
{% if tags|length > 1 %}
|
||||
<li><a href="{{ SITEURL }}/tags.html">Tags</a></li>
|
||||
{% endif %} -->
|
||||
<br />
|
||||
<!--
|
||||
<li>Galleries:</li>
|
||||
{% for page in pages %}
|
||||
{% if page.title != "About" and page.title !="Welcome" %}
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %}{% endif %}</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<br />
|
||||
--> <li>{{ LINKS_WIDGET_NAME | default('links') }}</li>
|
||||
{% for name, link in LINKS %}
|
||||
<li><a href="{{ link }}">{{ name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<span class="feed"><a href="{{ SITEURL }}/{{ FEED_RSS }}">RSS</a> | <a href="{{ SITEURL }}/{{ FEED_ATOM }}">Atom</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
|
||||
<div id="credits">
|
||||
<span>Powered by <a href="https://www.debian.org/" target="_blank">Debian GNU/Linux</a> and <a href="https://blog.getpelican.com/" target="_blank">Pelican</a>.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{% include 'analytics.html' %}
|
||||
{% include 'piwik.html' %}
|
||||
{% include 'disqus_script.html' %}
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{% endblock %}
|
||||
|
||||
Executable → Regular
+6
@@ -1,6 +1,10 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}{{ page.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div class="entry">
|
||||
|
||||
<header>
|
||||
<h1><a href="{{ SITEURL }}" id="site-title">{# {{ SITENAME }} #} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}
|
||||
<a href="{{ SITEURL }}/{{ page.url }}" id="page-title">{{ page.title }}</a></h1>
|
||||
@@ -8,4 +12,6 @@
|
||||
<article>
|
||||
{{ page.content }}
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Executable → Regular
Executable → Regular
+3
-2
@@ -12,8 +12,9 @@
|
||||
// @license magnet:?xt=urn:btih:c80d50af7d3db9be66a4d0a86db0286e4fd33292&dn=bsd-3-clause.txt BSD-3-Clause
|
||||
try {
|
||||
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", {{ PIWIK_SITE_ID }});
|
||||
piwikTracker.trackPageView();
|
||||
piwikTracker.enableLinkTracking();
|
||||
piwikTracker.disableCookies();
|
||||
piwikTracker.trackPageView();
|
||||
// piwikTracker.enableLinkTracking();
|
||||
} catch( err ) {}
|
||||
// @license-end
|
||||
</script><noscript><p><img src="http://{{ PIWIK_URL }}/piwik.php?idsite={{ PIWIK_SITE_ID }}" style="border:0" alt="" /></p></noscript>
|
||||
|
||||
Executable → Regular
+12
-83
@@ -1,84 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type="text/css" />
|
||||
<link href="{{ SITEURL }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed" />
|
||||
{% if FEED_RSS %}
|
||||
<link href="{{ SITEURL }}/{{ FEED_RSS }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" />
|
||||
{% endif %}
|
||||
{% extends "base.html" %}
|
||||
{% block title %}{{ page.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div class="entry">
|
||||
|
||||
<!--[if IE]>
|
||||
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||||
|
||||
<!--[if lte IE 7]>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="{{ SITEURL }}/css/ie.css"/>
|
||||
<script src="{{ SITEURL }}/js/IE8.js" type="text/javascript"></script><![endif]-->
|
||||
|
||||
<!--[if lt IE 7]>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="{{ SITEURL }}/css/ie6.css"/><![endif]-->
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div class="portfolio">
|
||||
{{ page.content }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="sidebar" style="width:25%">
|
||||
<h1><a href="{{ SITEURL }} " title="title">{{ SITENAME }}</a></h1>
|
||||
<span class="description">{{ DESCRIPTION }} </span>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="posts.html">Articles</a></li>
|
||||
<li><a href="portfolio.html">Photography</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
{% if categories|length > 1 %}
|
||||
<!-- <li><a href="{{ SITEURL }}/categories.html">Categories</a></li>
|
||||
{% endif %}
|
||||
{% if tags|length > 1 %}
|
||||
<li><a href="{{ SITEURL }}/tags.html">Tags</a></li>
|
||||
{% endif %} -->
|
||||
<br />
|
||||
<!--
|
||||
<li>Photo Portfolio:</li>
|
||||
{% for page in pages %}
|
||||
{% if page.title != "About" and page.title !="Welcome" and page.title !="Portfolio" %}
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %}{% endif %}</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<br />
|
||||
-->
|
||||
<li>{{ LINKS_WIDGET_NAME | default('links') }}</li>
|
||||
{% for name, link in LINKS %}
|
||||
<li><a href="{{ link }}">{{ name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<span class="feed"><a href="{{ SITEURL }}/{{ FEED_RSS }}">RSS</a> | <a href="{{ SITEURL }}/{{ FEED_ATOM }}">Atom</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
|
||||
<div id="credits">
|
||||
<span>Powered by <a href="https://www.debian.org/" target="_blank">Debian GNU/Linux</a> and <a href="https://blog.getpelican.com/" target="_blank">Pelican</a>.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{% include 'analytics.html' %}
|
||||
{% include 'piwik.html' %}
|
||||
{% include 'disqus_script.html' %}
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<article>
|
||||
{{ page.content }}
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Executable → Regular
Executable → Regular
Executable → Regular
+5
-1
@@ -1,9 +1,13 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div id="wrap" style="width:100%">
|
||||
<div id="container" style="width:70%">
|
||||
<div class="entry">
|
||||
<ul>
|
||||
{% for tag, articles in tags %}
|
||||
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
Executable → Regular
Executable → Regular
Reference in New Issue
Block a user