Skip to content

Commit

Permalink
Some reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tysen committed Jul 8, 2021
1 parent 1cbccd6 commit 0cd2dfa
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion puput/templates/el_pagination/show_more.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% if querystring %}
<div class="endless_container">
<a class="endless_more{% if class_name %} {{ class_name }}{% endif %}" href="{{ path }}{{ querystring }}"
rel="{{ querystring_key }}">{% if label %}{{ label|safe }}{% else %}{% trans "more" %}{% endif %}</a>
rel="{{ querystring_key }}">{% if label %}{{ label|safe }}{% else %}{% trans "more" %}{% endif %}</a>
<div class="endless_loading" style="display: none;">{{ loading|safe }}</div>
</div>
{% endif %}
2 changes: 1 addition & 1 deletion puput/templates/puput/blog_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<div class="row">
<ul class="social-share col-md-9">
<li class="social-item">
{% post_to_facebook post_url '<span><i class="fa fa-facebook"></i></span>' %}
{% post_to_facebook post_url '<span><i class="fa fa-facebook"></i></span>' %}
</li>
<li class="social-item">
{% post_to_twitter entry.title post_url '<span><i class="fa fa-twitter"></i></span>' %}
Expand Down
20 changes: 10 additions & 10 deletions puput/templates/puput/comments/disqus.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

<div id="disqus_thread"></div>
<script type="text/javascript">
/* <![CDATA[ */
var disqus_shortname = '{{ disqus_shortname }}';
var disqus_identifier = '{{ disqus_identifier }}';
/* <![CDATA[ */
var disqus_shortname = '{{ disqus_shortname }}';
var disqus_identifier = '{{ disqus_identifier }}';

/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
/* ]]> */
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
/* ]]> */
</script>
<noscript>Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="//disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
Expand Down
2 changes: 1 addition & 1 deletion puput/templates/puput/entry_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
{% entry_url self blog_page as post_url %}
<ul class="social-share-all text-right col-md-10">
<li class="social-item">
{% post_to_facebook post_url '<span><i class="fa fa-facebook"></i></span>' %}
{% post_to_facebook post_url '<span><i class="fa fa-facebook"></i></span>' %}
</li>
<li class="social-item">
{% post_to_twitter self.title post_url '<span><i class="fa fa-twitter"></i></span>' %}
Expand Down
4 changes: 2 additions & 2 deletions puput/templates/puput/tags/archives_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
{% for month in month_list reversed %}
<li>
<a href="{% routablepageurl blog_page "entries_by_date" year.grouper month.list.0|date:"m" %}">
{{ month.list.0|date:"F" }}
{{ month.list.0|date:"F" }}
</a>
</li>
{% endfor %}
</ul>
</li>
{% empty %}
{% empty %}
{% trans 'No entry archives yet' %}
{% endfor %}
</ul>
Expand Down

0 comments on commit 0cd2dfa

Please sign in to comment.