jekyll-theme-nanusefue 0.2.4 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4928afc88d0d8a99c7c1060ed169c28a48be9206
4
- data.tar.gz: 21651f3291a5a433b9c52c360601d40daa0e680d
2
+ SHA256:
3
+ metadata.gz: a68a6ffa908d9db23e87de9124890c56edafa2d081655776748b20cb26e28bc5
4
+ data.tar.gz: 314154b81eca906a96b17876ff0b87f5f67581dcc9325856221d2ecda51c30c4
5
5
  SHA512:
6
- metadata.gz: 6ae3dae0d83f1e73232bab00d5c220ebdabbe8d7cc9eb7f338e81b5898e23ff2f88cdda9c7990335a4f0695cf3faf59d91f889bf3a2f812f16be28e5ddeb4969
7
- data.tar.gz: 14f49d4f1beb5a545e1d57473431e1b9771adec08188fb01283983bed2c31ce0c46368314ee138fe7185b12e235a2a1aa44828221128918c2b4f41217943bbc6
6
+ metadata.gz: 11e03d998dac797f7fdfb392e7c1d4f803a3a8a6fff7c0d7304f9a293f3121d368bdd8cb2d9c92e32b4c2f6c9ad3f1d66c0c4e81dedb5e0f0bf4d9b776497161
7
+ data.tar.gz: ad2d0646fef42bf96d6b956dee0fdb4942a888a7a4a0e32248c2aebf72e42428b932863f008dc17523299cd9dd1d3e7094e27fe93bfca4977418d64322f73b97
@@ -0,0 +1,3 @@
1
+ {{site.twitter_username}}
2
+ {{site.github_username}}
3
+ {{site.email}}
data/_includes/head.html CHANGED
@@ -7,6 +7,8 @@
7
7
  <link rel="stylesheet" href="{{ "/assets/css/globalstyle.css" | absolute_url }}">
8
8
  <link rel="stylesheet" href="{{ "/assets/css/stylesheet.css" | absolute_url }}">
9
9
  <link rel="stylesheet" href="{{ "/assets/css/prism.css" | absolute_url }}">
10
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | absolute_url }}">
11
+
10
12
  <script type="text/javascript" src="{{ "/assets/js/clipboard.min.js" | absolute_url }}"></script>
11
13
  <script type="text/javascript" src="{{ "/assets/js/prism.js" | absolute_url }}"></script>
12
14
 
data/_includes/nav.html CHANGED
@@ -5,35 +5,4 @@
5
5
  <a href="{{ item.url }}" >{{ item.title }}</a>
6
6
  </div>
7
7
  {% endfor %}
8
-
9
-
10
-
11
- <!--
12
- <div class="view_tag_info">
13
- Filter: <b>works</b>&nbsp;&nbsp;
14
- <a href="http://vtol.cc" class="view_all">view all</a>
15
- </div>
16
- <br>
17
- <div class="page_link" id="menu_5496423">
18
- <a href="http://vtol.cc/news" id="p5496423" rel="history" name="vtol" id="p5496423">news</a>
19
- </div>
20
- <div class="link_link" id="menu_5493730">
21
- <a href="http://cargocollective.com/vtol/filter/works" target="" name="vtol" id="p5493730">works</a>
22
- </div>
23
- <div class="link_link" id="menu_5503145">
24
- <a href="http://vtol.cc/filter/instruments" target="" name="vtol" id="p5503145">instruments</a>
25
- </div>
26
- <div class="link_link" id="menu_6312117">
27
- <a href="http://vtol.cc/filter/ws" target="" name="vtol" id="p6312117">workshops</a>
28
- </div>
29
- <div class="page_link" id="menu_5496583">
30
- <a href="http://vtol.cc/sound" id="p5496583" rel="history" name="vtol" id="p5496583">sound</a>
31
- </div>
32
- <div class="page_link" id="menu_5496587">
33
- <a href="http://vtol.cc/about" id="p5496587" rel="history" name="vtol" id="p5496587">about</a>
34
- </div>
35
- <div class="page_link" id="menu_5549883">
36
- <a href="http://vtol.cc/contacts" id="p5549883" rel="history" name="vtol" id="p5549883">contacts</a>
37
- </div>
38
- -->
39
- </div>
8
+ </div>
@@ -4,5 +4,8 @@
4
4
  {% include nav.html %}
5
5
  <body>
6
6
  {{ content }}
7
+ <footer>
8
+ {% include footer.html %}
9
+ </footer>
7
10
  </body>
8
11
  </html>
data/_layouts/post.html CHANGED
@@ -5,4 +5,7 @@ layout: default
5
5
  <div id="maincontainer" class="bodycopy">
6
6
  </div>
7
7
  {{ content }}
8
- </div>
8
+ </div>
9
+ {% for tags in page.tags %}
10
+ #{{tags}}
11
+ {% endfor %}
data/_sass/font.scss ADDED
@@ -0,0 +1,2 @@
1
+ $fa-font-path: "fonts/font-awesome/";
2
+ @import 'font-awesome';
@@ -887,4 +887,13 @@ a#fullscreen:active {
887
887
  color: #999999;
888
888
  font-size: 10px;
889
889
  clear:both;
890
- }
890
+ }
891
+
892
+ footer {
893
+ position: absolute;
894
+ right: 0;
895
+ bottom: 0;
896
+ left: 0;
897
+ padding: 30px;
898
+ background-color: #999999
899
+ }
@@ -0,0 +1,79 @@
1
+ .highlight .hll { background-color: #222222 }
2
+ .highlight { background: #000000; color: #cccccc }
3
+ .highlight .c { color: #000080 } /* Comment */
4
+ .highlight .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */
5
+ .highlight .esc { color: #cccccc } /* Escape */
6
+ .highlight .g { color: #cccccc } /* Generic */
7
+ .highlight .k { color: #cdcd00 } /* Keyword */
8
+ .highlight .l { color: #cccccc } /* Literal */
9
+ .highlight .n { color: #cccccc } /* Name */
10
+ .highlight .o { color: #3399cc } /* Operator */
11
+ .highlight .x { color: #cccccc } /* Other */
12
+ .highlight .p { color: #cccccc } /* Punctuation */
13
+ .highlight .ch { color: #000080 } /* Comment.Hashbang */
14
+ .highlight .cm { color: #000080 } /* Comment.Multiline */
15
+ .highlight .cp { color: #000080 } /* Comment.Preproc */
16
+ .highlight .cpf { color: #000080 } /* Comment.PreprocFile */
17
+ .highlight .c1 { color: #000080 } /* Comment.Single */
18
+ .highlight .cs { color: #cd0000; font-weight: bold } /* Comment.Special */
19
+ .highlight .gd { color: #cd0000 } /* Generic.Deleted */
20
+ .highlight .ge { color: #cccccc; font-style: italic } /* Generic.Emph */
21
+ .highlight .gr { color: #FF0000 } /* Generic.Error */
22
+ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
23
+ .highlight .gi { color: #00cd00 } /* Generic.Inserted */
24
+ .highlight .go { color: #888888 } /* Generic.Output */
25
+ .highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
26
+ .highlight .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */
27
+ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
28
+ .highlight .gt { color: #0044DD } /* Generic.Traceback */
29
+ .highlight .kc { color: #cdcd00 } /* Keyword.Constant */
30
+ .highlight .kd { color: #00cd00 } /* Keyword.Declaration */
31
+ .highlight .kn { color: #cd00cd } /* Keyword.Namespace */
32
+ .highlight .kp { color: #cdcd00 } /* Keyword.Pseudo */
33
+ .highlight .kr { color: #cdcd00 } /* Keyword.Reserved */
34
+ .highlight .kt { color: #00cd00 } /* Keyword.Type */
35
+ .highlight .ld { color: #cccccc } /* Literal.Date */
36
+ .highlight .m { color: #cd00cd } /* Literal.Number */
37
+ .highlight .s { color: #cd0000 } /* Literal.String */
38
+ .highlight .na { color: #cccccc } /* Name.Attribute */
39
+ .highlight .nb { color: #cd00cd } /* Name.Builtin */
40
+ .highlight .nc { color: #00cdcd } /* Name.Class */
41
+ .highlight .no { color: #cccccc } /* Name.Constant */
42
+ .highlight .nd { color: #cccccc } /* Name.Decorator */
43
+ .highlight .ni { color: #cccccc } /* Name.Entity */
44
+ .highlight .ne { color: #666699; font-weight: bold } /* Name.Exception */
45
+ .highlight .nf { color: #cccccc } /* Name.Function */
46
+ .highlight .nl { color: #cccccc } /* Name.Label */
47
+ .highlight .nn { color: #cccccc } /* Name.Namespace */
48
+ .highlight .nx { color: #cccccc } /* Name.Other */
49
+ .highlight .py { color: #cccccc } /* Name.Property */
50
+ .highlight .nt { color: #cccccc } /* Name.Tag */
51
+ .highlight .nv { color: #00cdcd } /* Name.Variable */
52
+ .highlight .ow { color: #cdcd00 } /* Operator.Word */
53
+ .highlight .w { color: #cccccc } /* Text.Whitespace */
54
+ .highlight .mb { color: #cd00cd } /* Literal.Number.Bin */
55
+ .highlight .mf { color: #cd00cd } /* Literal.Number.Float */
56
+ .highlight .mh { color: #cd00cd } /* Literal.Number.Hex */
57
+ .highlight .mi { color: #cd00cd } /* Literal.Number.Integer */
58
+ .highlight .mo { color: #cd00cd } /* Literal.Number.Oct */
59
+ .highlight .sa { color: #cd0000 } /* Literal.String.Affix */
60
+ .highlight .sb { color: #cd0000 } /* Literal.String.Backtick */
61
+ .highlight .sc { color: #cd0000 } /* Literal.String.Char */
62
+ .highlight .dl { color: #cd0000 } /* Literal.String.Delimiter */
63
+ .highlight .sd { color: #cd0000 } /* Literal.String.Doc */
64
+ .highlight .s2 { color: #cd0000 } /* Literal.String.Double */
65
+ .highlight .se { color: #cd0000 } /* Literal.String.Escape */
66
+ .highlight .sh { color: #cd0000 } /* Literal.String.Heredoc */
67
+ .highlight .si { color: #cd0000 } /* Literal.String.Interpol */
68
+ .highlight .sx { color: #cd0000 } /* Literal.String.Other */
69
+ .highlight .sr { color: #cd0000 } /* Literal.String.Regex */
70
+ .highlight .s1 { color: #cd0000 } /* Literal.String.Single */
71
+ .highlight .ss { color: #cd0000 } /* Literal.String.Symbol */
72
+ .highlight .bp { color: #cd00cd } /* Name.Builtin.Pseudo */
73
+ .highlight .fm { color: #cccccc } /* Name.Function.Magic */
74
+ .highlight .vc { color: #00cdcd } /* Name.Variable.Class */
75
+ .highlight .vg { color: #00cdcd } /* Name.Variable.Global */
76
+ .highlight .vi { color: #00cdcd } /* Name.Variable.Instance */
77
+ .highlight .vm { color: #00cdcd } /* Name.Variable.Magic */
78
+ .highlight .il { color: #cd00cd } /* Literal.Number.Integer.Long */
79
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-nanusefue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nanusefue
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-30 00:00:00.000000000 Z
11
+ date: 2019-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -61,6 +61,7 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
+ - _includes/footer.html
64
65
  - _includes/head.html
65
66
  - _includes/nav.html
66
67
  - _layouts/category.html
@@ -68,9 +69,11 @@ files:
68
69
  - _layouts/home.html
69
70
  - _layouts/page.html
70
71
  - _layouts/post.html
72
+ - _sass/font.scss
71
73
  - assets/css/globalstyle.css
72
74
  - assets/css/prism.css
73
75
  - assets/css/stylesheet.css
76
+ - assets/css/vim.css
74
77
  - assets/globalstyle.css
75
78
  - assets/highlighting/README.md
76
79
  - assets/highlighting/UNLICENSE.txt
@@ -118,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
121
  version: '0'
119
122
  requirements: []
120
123
  rubyforge_project:
121
- rubygems_version: 2.6.8
124
+ rubygems_version: 2.7.6
122
125
  signing_key:
123
126
  specification_version: 4
124
127
  summary: theme gallery works