Trailing whitespaces cleanup in bootstrap2
This commit is contained in:
@@ -1,40 +1,40 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}{{ article.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<section id="content">
|
||||
<article>
|
||||
<header>
|
||||
<h1>
|
||||
<a href="{{ pagename }}"
|
||||
rel="bookmark"
|
||||
title="Permalink to {{ article.title }}">
|
||||
{{ article.title}}
|
||||
</a>
|
||||
{% include 'twitter.html' %}
|
||||
</h1>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<div class="well">
|
||||
{% include 'article_infos.html' %}
|
||||
</div>
|
||||
{{ article.content }}
|
||||
</div><!-- /.entry-content -->
|
||||
{% if DISQUS_SITENAME %}
|
||||
<div class="comments">
|
||||
<h2>Comments !</h2>
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_identifier = "{{ article.url }}";
|
||||
(function() {
|
||||
var dsq = document.createElement('script');
|
||||
dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = 'http://{{ DISQUS_SITENAME }}.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] ||
|
||||
document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
</div>
|
||||
{% endif %}
|
||||
</article>
|
||||
<section id="content">
|
||||
<article>
|
||||
<header>
|
||||
<h1>
|
||||
<a href="{{ pagename }}"
|
||||
rel="bookmark"
|
||||
title="Permalink to {{ article.title }}">
|
||||
{{ article.title}}
|
||||
</a>
|
||||
{% include 'twitter.html' %}
|
||||
</h1>
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
<div class="well">
|
||||
{% include 'article_infos.html' %}
|
||||
</div>
|
||||
{{ article.content }}
|
||||
</div><!-- /.entry-content -->
|
||||
{% if DISQUS_SITENAME %}
|
||||
<div class="comments">
|
||||
<h2>Comments !</h2>
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_identifier = "{{ article.url }}";
|
||||
(function() {
|
||||
var dsq = document.createElement('script');
|
||||
dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = 'http://{{ DISQUS_SITENAME }}.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] ||
|
||||
document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
</div>
|
||||
{% endif %}
|
||||
</article>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
<footer class="post-info">
|
||||
<span class="label">Date</span>
|
||||
<abbr class="published" title="{{ article.date.isoformat() }}">
|
||||
<i class="icon-calendar"></i>{{ article.locale_date }}
|
||||
<i class="icon-calendar"></i>{{ article.locale_date }}
|
||||
</abbr>
|
||||
{% if article.author %}
|
||||
<span class="label">By</span>
|
||||
<a href="{{ SITEURL }}/{{ article.author.url }}"><i class="icon-user"></i>{{ article.author }}</a>
|
||||
{% endif %}
|
||||
<span class="label">Category</span>
|
||||
<a href="{{ SITEURL }}/{{ article.category.url }}"><i class="icon-folder-open"></i>{{ article.category }}</a>.
|
||||
<a href="{{ SITEURL }}/{{ article.category.url }}"><i class="icon-folder-open"></i>{{ article.category }}</a>.
|
||||
|
||||
{% if PDF_PROCESSOR %}
|
||||
<span class="label">
|
||||
<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a>
|
||||
</span>
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% include 'taglist.html' %}
|
||||
{% include 'translations.html' %}
|
||||
</footer><!-- /.post-info -->
|
||||
|
||||
@@ -17,27 +17,22 @@
|
||||
.sidebar-nav {
|
||||
padding: 9px 0;
|
||||
}
|
||||
|
||||
.tag-1 {
|
||||
font-size: 13pt;
|
||||
}
|
||||
|
||||
.tag-2 {
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.tag-2 {
|
||||
font-size: 8pt;
|
||||
}
|
||||
|
||||
.tag-4 {
|
||||
font-size: 6pt;
|
||||
}
|
||||
|
||||
.tag-1 {
|
||||
font-size: 13pt;
|
||||
}
|
||||
.tag-2 {
|
||||
font-size: 10pt;
|
||||
}
|
||||
.tag-2 {
|
||||
font-size: 8pt;
|
||||
}
|
||||
.tag-4 {
|
||||
font-size: 6pt;
|
||||
}
|
||||
</style>
|
||||
<link href="{{ SITEURL }}/theme/css/bootstrap-responsive.css" rel="stylesheet">
|
||||
<link href="{{ SITEURL }}/theme/css/font-awesome.css" rel="stylesheet">
|
||||
|
||||
<link href="{{ SITEURL }}/theme/css/font-awesome.css" rel="stylesheet">
|
||||
|
||||
<link href="{{ SITEURL }}/theme/css/pygments.css" rel="stylesheet">
|
||||
|
||||
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
|
||||
@@ -78,20 +73,20 @@
|
||||
{% for page in PAGES %}
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
<li class="divider-vertical"></li>
|
||||
<li class="divider-vertical"></li>
|
||||
{% endif %}
|
||||
{% for cat, null in categories %}
|
||||
<li {% if cat == category %}class="active"{% endif %}>
|
||||
<a href="{{ SITEURL }}/category/{{ cat }}.html">
|
||||
<i class="icon-folder-open icon-large"></i>{{ cat }}
|
||||
</a>
|
||||
<i class="icon-folder-open icon-large"></i>{{ cat }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
||||
<ul class="nav pull-right">
|
||||
<li><a href="{{ SITEURL }}/archives.html"><i class="icon-th-list"></i>Archives</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<ul class="nav pull-right">
|
||||
<li><a href="{{ SITEURL }}/archives.html"><i class="icon-th-list"></i>Archives</a></li>
|
||||
</ul>
|
||||
|
||||
</ul>
|
||||
<!--<p class="navbar-text pull-right">Logged in as <a href="#">username</a></p>-->
|
||||
</div><!--/.nav-collapse -->
|
||||
@@ -105,8 +100,8 @@
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</div><!--/span-->
|
||||
|
||||
<div class="span3 well sidebar-nav" id="sidebar">
|
||||
|
||||
<div class="span3 well sidebar-nav" id="sidebar">
|
||||
{% include 'sidebar.html' %}
|
||||
</div><!--/.well -->
|
||||
|
||||
@@ -117,11 +112,11 @@
|
||||
<footer>
|
||||
<address id="about">
|
||||
Proudly powered by <a href="http://pelican.notmyidea.org/">Pelican <i class="icon-external-link"></i></a>,
|
||||
which takes great advantage of <a href="http://python.org">Python <i class="icon-external-link"></i></a>.
|
||||
which takes great advantage of <a href="http://python.org">Python <i class="icon-external-link"></i></a>.
|
||||
</address><!-- /#about -->
|
||||
|
||||
<p>The theme is from <a href="http://twitter.github.com/bootstrap/">Bootstrap from Twitter <i class="icon-external-link"></i></a>,
|
||||
and <a href="http://fortawesome.github.com/Font-Awesome/">Font-Awesome <i class="icon-external-link"></i></a>, thanks!</p>
|
||||
<p>The theme is from <a href="http://twitter.github.com/bootstrap/">Bootstrap from Twitter <i class="icon-external-link"></i></a>,
|
||||
and <a href="http://fortawesome.github.com/Font-Awesome/">Font-Awesome <i class="icon-external-link"></i></a>, thanks!</p>
|
||||
</footer>
|
||||
|
||||
</div><!--/.fluid-container-->
|
||||
@@ -129,7 +124,7 @@
|
||||
|
||||
{% include 'analytics.html' %}
|
||||
{% include 'piwik.html' %}
|
||||
{% include 'disqus_script.html' %}
|
||||
{% include 'disqus_script.html' %}
|
||||
|
||||
|
||||
<!-- Le javascript
|
||||
@@ -148,8 +143,7 @@
|
||||
<script src="{{ SITEURL }}/theme/js/bootstrap-collapse.js"></script>
|
||||
<script src="{{ SITEURL }}/theme/js/bootstrap-carousel.js"></script>
|
||||
<script src="{{ SITEURL }}/theme/js/bootstrap-typeahead.js"></script>
|
||||
|
||||
<!--<script src="{{ SITEURL }}/theme/js/autosidebar.js"></script>-->
|
||||
|
||||
<!--<script src="{{ SITEURL }}/theme/js/autosidebar.js"></script>-->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% if DISQUS_SITENAME %}
|
||||
<p>There are
|
||||
<p>There are
|
||||
<a href="{{ SITEURL }}/{{ article.url }}#disqus_thread">
|
||||
comments
|
||||
</a>.
|
||||
|
||||
@@ -1,47 +1,47 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content_title %}{% endblock %}
|
||||
{% block content %}
|
||||
{% block content %}
|
||||
{% if articles %}
|
||||
{% for article in (articles_page.object_list if articles_page else articles) %}
|
||||
<div class='article'>
|
||||
<h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
|
||||
<div class="well small">{% include "article_infos.html" %}</div>
|
||||
<div class="summary">{{ article.summary }}
|
||||
<a class="btn primary xsmall" href="{{ SITEURL }}/{{ article.url }}">more ...</a>
|
||||
</div>
|
||||
</div>
|
||||
<hr />
|
||||
{% endfor %}
|
||||
{%endif%}
|
||||
{% for article in (articles_page.object_list if articles_page else articles) %}
|
||||
<div class="article">
|
||||
<h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
|
||||
<div class="well small">{% include "article_infos.html" %}</div>
|
||||
<div class="summary">{{ article.summary }}
|
||||
<a class="btn primary xsmall" href="{{ SITEURL }}/{{ article.url }}">more ...</a>
|
||||
</div>
|
||||
</div>
|
||||
<hr />
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if articles_page and articles_paginator.num_pages > 1 %}
|
||||
<div class="pagination">
|
||||
<ul>
|
||||
{% if articles_page.has_previous() %}
|
||||
{% set num = articles_page.previous_page_number() %}
|
||||
<li class="prev"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">← Previous</a></li>
|
||||
{% else %}
|
||||
<li class="prev disabled"><a href="#">← Previous</a></li>
|
||||
{% endif %}
|
||||
{% for num in range( 1, 1 + articles_paginator.num_pages ) %}
|
||||
<li class="{{ 'active' if num == articles_page.number else '' }}"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">{{ num }}</a></li>
|
||||
{% endfor %}
|
||||
{% if articles_page.has_next() %}
|
||||
<li class="next"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">Next →</a></li>
|
||||
{% else %}
|
||||
<li class="next disabled"><a href="#">→ Next</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
{% if articles_page and articles_paginator.num_pages > 1 %}
|
||||
<div class="pagination">
|
||||
<ul>
|
||||
{% if articles_page.has_previous() %}
|
||||
{% set num = articles_page.previous_page_number() %}
|
||||
<li class="prev"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">← Previous</a></li>
|
||||
{% else %}
|
||||
<li class="prev disabled"><a href="#">← Previous</a></li>
|
||||
{% endif %}
|
||||
{% for num in range( 1, 1 + articles_paginator.num_pages ) %}
|
||||
<li class="{{ 'active' if num == articles_page.number else '' }}"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">{{ num }}</a></li>
|
||||
{% endfor %}
|
||||
{% if articles_page.has_next() %}
|
||||
<li class="next"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">Next →</a></li>
|
||||
{% else %}
|
||||
<li class="next disabled"><a href="#">→ Next</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{% else %}
|
||||
{% if PAGES %}
|
||||
<section id="content" class="body">
|
||||
<h1>Pages</h1>
|
||||
{% for page in PAGES %}
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</section>
|
||||
{% endif %}
|
||||
{% if PAGES %}
|
||||
<section id="content" class="body">
|
||||
<h1>Pages</h1>
|
||||
{% for page in PAGES %}
|
||||
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</section>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endblock content %}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}{{ page.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<section id="content" class="body">
|
||||
<h1 class="entry-title">{{ page.title }}</h1>
|
||||
{% if PDF_PROCESSOR %}
|
||||
<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">
|
||||
get the pdf
|
||||
</a>
|
||||
{% endif %}
|
||||
{{ page.content }}
|
||||
<section id="content" class="body">
|
||||
<h1 class="entry-title">{{ page.title }}</h1>
|
||||
{% if PDF_PROCESSOR %}
|
||||
<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">
|
||||
get the pdf
|
||||
</a>
|
||||
{% endif %}
|
||||
{{ page.content }}
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<li class="nav-header"><h4><i class="icon-search"></i>Google Search</h4></li>
|
||||
<div id="cse" style="width: 100%;">Loading</div>
|
||||
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
<script type="text/javascript">
|
||||
google.load('search', '1');
|
||||
google.setOnLoadCallback(function() {
|
||||
var customSearchOptions = {}; var customSearchControl = new google.search.CustomSearchControl(
|
||||
@@ -12,4 +12,4 @@
|
||||
}, true);
|
||||
</script>
|
||||
<link rel="stylesheet" href="http://www.google.com/cse/style/look/default.css" type="text/css" />
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% if article.tags %}
|
||||
<span class="label">Tags</span>
|
||||
<span class="label">Tags</span>
|
||||
{% for tag in article.tags %}
|
||||
<a href="{{ SITEURL }}/{{ tag.url }}"><i class="icon-tag"></i>{{ tag }}</a>
|
||||
{% endfor %}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% if TWITTER_USERNAME %}
|
||||
<a href="http://twitter.com/share" class="twitter-share-button"
|
||||
<a href="http://twitter.com/share" class="twitter-share-button"
|
||||
data-count="horizontal" data-via="{{TWITTER_USERNAME}}">Tweet</a>
|
||||
<script type="text/javascript" src="http://platform.twitter.com/widgets.js">
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user