structrdfal 0.2.0 → 0.2.1
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/comment-form.html +1 -1
- data/_layouts/post.html +9 -9
- data/_sass/structrdfal.scss +1 -0
- 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: db45523bab0b931354497790a0be2e39a836c222cff0d90745ba454834cc2a93
|
4
|
+
data.tar.gz: 7a0b35d53956113fc289239f05bfae88ce352c2406cd17fe44307ba68ca753d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2b90cb1c25e91063a6cb8cf5f6f98f805ad669a06cb9cffb6fbac4ad6851e488a709d3e7ef4236777bc327397efaec32b552ea42ec39fc7e20195d5642dde8b
|
7
|
+
data.tar.gz: 930ead282a0bc1d8c29fae80163af4c675fc8f0e6f50ee8e2c2033bb7345c6a037f0356570027fd9c69b1251c36eb3e9eb7f53e5fa3026d1f2339c18754426be
|
data/_includes/comment-form.html
CHANGED
@@ -36,7 +36,7 @@
|
|
36
36
|
<span id="helpnote">
|
37
37
|
<span id="helpmark">?</span>
|
38
38
|
<div id="helpmsg">
|
39
|
-
<p><strong>Note:</strong> for security reasons, a <strong><tt>mailto</tt></strong> link is being used. If configured on your end, this is the safest way for both parties. This activates <em>your</em> mailer to send the data entered. <a href="https://
|
39
|
+
<p><strong>Note:</strong> for security reasons, a <strong><tt>mailto</tt></strong> link is being used. If configured on your end, this is the safest way for both parties. This activates <em>your</em> mailer to send the data entered. <a href="https://mailtrap.io/blog/mailto-links-explained/#Changing-the-default-mailto-behavior">See here</a> or <a href="https://www.chainsawonatireswing.com/2015/05/03/a-guide-to-getting-webmail-services-to-work-with-mailto-links/">here</a> for why that might not work and what to do about it.</p>
|
40
40
|
<noscript><p><strong>You don't appear to have Javascript enabled</strong>. On this page, the only Javascript used is to indicate when the form has been submitted. If your browser and mail are configured to allow <tt>mailto</tt> links to work, then a mail composition window popping up will be your indication that everything is working. If you are <strong>not</strong> configured for <tt>mailto</tt> <strong>and</strong> your Javascript is disabled, you will see... nothing. There will be no way to tell if something else is wrong or if you just missed actually clicking on the <tt>Submit</tt> button. Sorry.</p></noscript>
|
41
41
|
</div>
|
42
42
|
</span>
|
data/_layouts/post.html
CHANGED
@@ -43,15 +43,15 @@ mntype: BlogPosting
|
|
43
43
|
{%- endif %}
|
44
44
|
</article>
|
45
45
|
<section class="related">
|
46
|
-
<h2>Related Posts</h2>
|
47
|
-
<ul class="related-posts">
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
</ul>
|
46
|
+
<!-- <h2>Related Posts</h2> -->
|
47
|
+
<!-- <ul class="related-posts"> -->
|
48
|
+
<!-- {%- for post in site.related_posts limit:3 -%} -->
|
49
|
+
<!-- <li> -->
|
50
|
+
<!-- <small>{{ post.date | date_to_string }}</small> -->
|
51
|
+
<!-- <a href="{{ post.url | relative_url }}">{{ post.title }}</a> -->
|
52
|
+
<!-- </li> -->
|
53
|
+
<!-- {% endfor -%} -->
|
54
|
+
<!-- </ul> -->
|
55
55
|
<nav id="blog-prevnext" class="blog-pager">
|
56
56
|
{% if page.previous.url -%}
|
57
57
|
<a href="{{page.previous.url}}">← {{page.previous.title}}</a>
|
data/_sass/structrdfal.scss
CHANGED
@@ -350,6 +350,7 @@ nav.blog-pager a:active:not([rel="self"]) {
|
|
350
350
|
/* -----------------------------------------------------------------
|
351
351
|
Styles for the previous/next blog page links
|
352
352
|
----------------------------------------------------------------- */
|
353
|
+
#blog-prevnext { margin-top: 1em; }
|
353
354
|
#blog-prevnext :first-child { float: left; }
|
354
355
|
#blog-prevnext :last-child { float: right; }
|
355
356
|
|