jekyll-theme-terminal 0.3.3 → 0.4.0
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/README.md +2 -11
- data/_includes/head.html +78 -0
- metadata +2 -3
- data/_sass/main.scss +0 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f43755d8f3daa2cdf15579c9446946e86c6df468
|
|
4
|
+
data.tar.gz: d5bcd1a85cb29bb24336cc52e2ec08f1199637d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa6ca73f5947ba7be35a3e09abb1c8f7df6dc670266c8aba91ea0db2fc5841d4c164185128c5ad48217b9a68f97336791b1e7859af0baa770491ea51f3f0d6eb
|
|
7
|
+
data.tar.gz: b879dbe301613648798a81a49cb232cabe4164c760d7de5ed40b3e78a8fd08f62d183fd5a6ed84e1feea121f98cb1b64fcd285fd0efd55bf63b85bd20b8fb2a5
|
data/README.md
CHANGED
|
@@ -1,22 +1,13 @@
|
|
|
1
1
|
# jekyll-theme-terminal
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Sadly the main.css is not linking correctly and some minor tweaks are needed to display posts.
|
|
6
|
-
Currently posts will only be visible via the whois link, which is kind of weird :)
|
|
7
|
-
|
|
8
|
-
Welcome to your new jekyll-theme-terminal Layout.
|
|
9
|
-
Currently still in development, but working hard on it.
|
|
10
|
-
|
|
11
|
-
BUGS: Problems adding the missing stylesheets and layouts :-/
|
|
12
|
-
Check back for repairs and updates, working on it.
|
|
3
|
+
Looks like a Terminal: Currently without any functionality.
|
|
13
4
|
|
|
14
5
|
## Installation
|
|
15
6
|
|
|
16
7
|
Add this line to your Jekyll site's `Gemfile`:
|
|
17
8
|
|
|
18
9
|
```ruby
|
|
19
|
-
gem "jekyll-theme-terminal", "~>0.
|
|
10
|
+
gem "jekyll-theme-terminal", "~>0.4.0"
|
|
20
11
|
```
|
|
21
12
|
|
|
22
13
|
And add this line to your Jekyll site's `_config.yml`:
|
data/_includes/head.html
CHANGED
|
@@ -13,4 +13,82 @@
|
|
|
13
13
|
<script src="https://osss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js">
|
|
14
14
|
</script>
|
|
15
15
|
<![endif]-->
|
|
16
|
+
<style>
|
|
17
|
+
/** Reset some basic elements **/
|
|
18
|
+
/** Moving this into here for a while. **/
|
|
19
|
+
|
|
20
|
+
body, h1, h2, h3, h4, h5, h6,
|
|
21
|
+
p, blockquote, pre, hr, dl, dd, ol, ul, figure, header {
|
|
22
|
+
margin: 0;
|
|
23
|
+
padding: 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
body {
|
|
27
|
+
height: 98%;
|
|
28
|
+
position: relative;
|
|
29
|
+
background-color:#000;
|
|
30
|
+
color: #fff;
|
|
31
|
+
font-family: courier, monospace;
|
|
32
|
+
margin: 0 auto;
|
|
33
|
+
padding: 0;
|
|
34
|
+
font-size: 16px !default;
|
|
35
|
+
margin-left: 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
a {
|
|
39
|
+
color: #008800 !default;
|
|
40
|
+
text-decoration: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
a:hover {
|
|
44
|
+
background-color: #008800 !default;
|
|
45
|
+
color: #fff;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
header, h4 {
|
|
49
|
+
color: #008800 !default;
|
|
50
|
+
display: inline;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
article {
|
|
54
|
+
margin: 0 auto;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
footer {
|
|
58
|
+
position: absolute;
|
|
59
|
+
height: 30px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.wrapper {
|
|
63
|
+
width: 80%;
|
|
64
|
+
min-height: calc(96vh - 50px);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.stdout {
|
|
68
|
+
margin: 0px auto;
|
|
69
|
+
padding: 0px 20px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.ls {
|
|
73
|
+
color: #ff4444;
|
|
74
|
+
margin: 0px auto;
|
|
75
|
+
padding: 10px 20px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.cat {
|
|
79
|
+
color: #fff;
|
|
80
|
+
margin-top: 10px;
|
|
81
|
+
padding: 10px;
|
|
82
|
+
text-align: left;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.highlight {
|
|
86
|
+
color: #ffaaaa;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.inline {
|
|
90
|
+
display: inline;
|
|
91
|
+
text-align: right;
|
|
92
|
+
}
|
|
93
|
+
</style>
|
|
16
94
|
</head>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-terminal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- squifi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-12-
|
|
11
|
+
date: 2017-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -71,7 +71,6 @@ files:
|
|
|
71
71
|
- _sass/jekyll-theme-terminal.scss
|
|
72
72
|
- _sass/jekyll-theme-terminal/_base.scss
|
|
73
73
|
- _sass/jekyll-theme-terminal/_cat.scss
|
|
74
|
-
- _sass/main.scss
|
|
75
74
|
homepage: https://github.com/Squifi/jekyll-theme-terminal
|
|
76
75
|
licenses:
|
|
77
76
|
- MIT
|
data/_sass/main.scss
DELETED