jekyll-theme-terminal 0.7.0 → 0.7.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/footer.html +4 -1
- data/_layouts/home.html +2 -11
- data/_layouts/page.html +1 -3
- data/_layouts/post.html +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0efb9b334c6317790ad53cb16d6b41fbf7a1d106
|
|
4
|
+
data.tar.gz: 30f01df04f98d79e5fbde056eb573a7c0eea49c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 651fc673e7d3905a0133269298028ce475fe9616b58bcfaac077f7aebfdfefa3463c78f72dbe29a0de315befdd2cd7e222b5eed020e8316c8781b2341aeeed72
|
|
7
|
+
data.tar.gz: 57ed71f1cc28f922e4beca5678e2f8ff364605acbc37b405b8a1f715c531687b1d7da17d8f8d351ff2c1910f0b05473359fb666cf890916b26eef35062cc76df
|
data/_includes/footer.html
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
<h4>
|
|
2
|
+
[{{ site.author }}@{{ site.url | escape }}]$<a href="/">cd ~</a>
|
|
3
|
+
</h4>
|
|
1
4
|
<footer class="site-footer">
|
|
2
5
|
<p>
|
|
3
|
-
<pre>-- INSERT -- wc:{{ page.content | number_of_words }}-{{ site.time | date_to_long_string }}-made with ❤ by {{site.author}}
|
|
6
|
+
<pre>-- INSERT -- wc:{{ page.content | number_of_words }}- {{ site.time | date_to_long_string }} - made with ❤ by {{site.author}}
|
|
4
7
|
</pre>
|
|
5
8
|
</p>
|
|
6
9
|
</footer>
|
data/_layouts/home.html
CHANGED
|
@@ -3,20 +3,11 @@
|
|
|
3
3
|
<body>
|
|
4
4
|
{% include header.html%}
|
|
5
5
|
<div class="wrapper">
|
|
6
|
-
<
|
|
6
|
+
<h3>127.0.0.1</h3>
|
|
7
7
|
<p class="cat">
|
|
8
|
-
|
|
9
|
-
welcome to the jekyll-terminal-theme. I hope you enjoy it so
|
|
10
|
-
far.</br>
|
|
11
|
-
Enjoy.
|
|
12
|
-
</br></br>
|
|
13
|
-
Squifi.
|
|
8
|
+
{{content}}
|
|
14
9
|
</p>
|
|
15
10
|
</div>
|
|
16
|
-
<h4>
|
|
17
|
-
[{{site.author}}@{{ site.url | escape }} ~]$
|
|
18
|
-
<a href="/">cd ~</a>
|
|
19
|
-
</h4>
|
|
20
11
|
{% include footer.html %}
|
|
21
12
|
</body>
|
|
22
13
|
</html>
|
data/_layouts/page.html
CHANGED
|
@@ -7,9 +7,7 @@ layout: default
|
|
|
7
7
|
<section>
|
|
8
8
|
{% for item in site.posts %}
|
|
9
9
|
<article class="ls">
|
|
10
|
-
-rwxrwxr-x. 1 {{site.author}} {{
|
|
10
|
+
-rwxrwxr-x. 1 {{site.author}} {{item.author}} {{item.content | number_of_words }} {{item.date}} <a href="{{item.url}}">{{item.title}}</a>
|
|
11
11
|
</article>
|
|
12
12
|
{% endfor %}
|
|
13
|
-
<h4>[{{site.author}}@{{ site.url | escape }} ~]$</h4>
|
|
14
|
-
<a href="/">clear</a>
|
|
15
13
|
</section>
|
data/_layouts/post.html
CHANGED