jekyll-foxslide 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/article.html +6 -9
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ea10b0c258cd535c2d7634231ffbb9f42cd8704c07cf0d496d12fd440dcd82b
|
|
4
|
+
data.tar.gz: b5d3dc986c5dbc590181aa900557145465fa322b8bbc29500c9f9d7b70a4fd2f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14b06e988882ddfa0f57221d76b543d2da6c73ae794102db44dcf573f75b956c49c9c9d53c262cf8665174064d3bf81e45f6af63d771ae1781136ae88d056ab4
|
|
7
|
+
data.tar.gz: 3c56738f97b81c17b945add612075baf20391608e0666c33e81ca9a5d51dd6677010837494872d3a04e3c9ff7508342a26b0420dfe8976d83e98a294ed576a42
|
data/_includes/article.html
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
{% if index %}
|
|
5
5
|
{% if post.external-url %}<!-- This defines how Octopress will use posts with external-url. -->
|
|
6
6
|
<h1 class="entry-title"><a href="{{ post.external-url }}">{% if site.linklog_marker_position_feed == 'before' %}{{ site.linklog_marker }}{% endif %} {% if site.titlecase %}{{ post.title | titlecase }}{% if site.linklog_marker_position_feed == 'after' %}{{ site.linklog_marker }}{% endif %}{% else %}{{ post.title }}{% endif %}</a></h1>
|
|
7
|
-
{% else %}<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
|
|
7
|
+
{% else %}<!-- Now we're back to normal posts. Note the links used under href in both headers.-->
|
|
8
8
|
<h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
|
|
9
|
-
{% endif %}
|
|
9
|
+
{% endif %}
|
|
10
10
|
{% else %}
|
|
11
11
|
{% if page.external-url %}
|
|
12
12
|
<h1 class="entry-title"><a href="{{ page.external-url }}">{% if site.titlecase %}{% if site.linklog_marker_position == 'before' %}{{ site.linklog_marker }}{% endif %}{{ page.title | titlecase }}{% if site.linklog_marker_position == 'after' %}{{ site.linklog_marker }}{% endif %}{% else %}{{ page.title }}{% endif %}</a></h1>
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
{% endif %}
|
|
17
17
|
{% unless page.meta == false %}
|
|
18
18
|
<p class="meta">
|
|
19
|
-
{% include post/author.html %} -
|
|
20
|
-
{% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} -
|
|
19
|
+
{% include post/author.html %} -
|
|
20
|
+
{% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} -
|
|
21
21
|
{% include post/categories.html %}
|
|
22
22
|
{% if site.disqus_short_name and page.comments != false and post.comments != false and site.disqus_show_comment_count == true %}
|
|
23
23
|
| <a href="{% if index %}{{ root_url }}{{ post.url }}{% endif %}#disqus_thread">Comments</a>
|
|
@@ -49,13 +49,10 @@
|
|
|
49
49
|
|
|
50
50
|
<footer>
|
|
51
51
|
<p class="meta">
|
|
52
|
-
{% include post/author.html %} -
|
|
53
|
-
{% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} -
|
|
52
|
+
{% include post/author.html %} -
|
|
53
|
+
{% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} -
|
|
54
54
|
{% include post/categories.html %}
|
|
55
55
|
</p>
|
|
56
|
-
{% unless page.sharing == false %}
|
|
57
|
-
{% include post/sharing.html %}
|
|
58
|
-
{% endunless %}
|
|
59
56
|
{% if page.previous.url %}
|
|
60
57
|
<a class="pull-left" href="{{root_url}}{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">« {{page.previous.title}}</a>
|
|
61
58
|
{% endif %}
|