alpha-one 0.2.4 → 0.3.0

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: 9dd1289468981d71e54467e47ed09c8e2758b478
4
- data.tar.gz: d289ff87d10aa28b6f250b56dd5fcb06e25902ca
2
+ SHA256:
3
+ metadata.gz: 0b150ee551f42d4e665823cacae756610db40329c9901ad0246d1b596321d595
4
+ data.tar.gz: 8f87a1fd1c15c80f7961d24334c225003b0edc9c0293ce055d85d24143fc3fd0
5
5
  SHA512:
6
- metadata.gz: b16cdc4df18eb0d6fd8f25ff89f5e4ae295775269b5415099a29b2cc96817dd71059789db20c1fe49d7a04d6bdf19554aca7c8f80d7a67d35f4bea329065b283
7
- data.tar.gz: aa883e5187425d7c5bbe4630ba3e8845a04d57cc21049b1640d9ce7a96d539883bdbb96deafe285860330a7efd10974c579f69f9f0fbeba8879228066d476ede
6
+ metadata.gz: 1446d2904c5d312b1dbcc64220ed3812b0e3c8b74fed6abdeb7081bb85bb8aed07d045098cf64648aafe2d3f02db0f37c32562d6bc972a514917a158e0677552
7
+ data.tar.gz: 2c036cd384e4f3a796278f6f74586a6bf522235d1a464638b2033985db3c95c34de18298af698f07a810c7f049bde3df473909748de83e831e3b4b514e6cba35
data/README.md CHANGED
@@ -45,7 +45,6 @@ Or install it yourself as:
45
45
  The following variable can/must be set in _config.yml
46
46
  - title: text shown in the navbar and the footer
47
47
  - motto: a maxim shown in the footer, under the title
48
- - footer (optional): some text shown at the bottom of the footer
49
48
  - header_link_1_label, header_link_1_href (both optional): used to add links in the header bar
50
49
  - twitter_username
51
50
  - github_username
@@ -5,10 +5,7 @@
5
5
  <div class="col-md-8" >
6
6
  <b>{{ site.title }}</b>
7
7
  <p>{{ site.motto }}</p>
8
- <p>&nbsp;</p>
9
- {% if site.footer.size > 0 %}
10
- <small>{{ site.footer }}</small>
11
- {% endif %}
8
+ <small>Powered by <a href="https://jekyllrb.com/">Jekyll</a> and the <a href="https://github.com/proudier/alpha-one">Alpha-One</a> theme.</small>
12
9
  </div>
13
10
  <div class="col-md-3">
14
11
  <b>Links</b>
@@ -19,14 +19,14 @@
19
19
  <!-- JS and CSS are fetch now to prevent FOUC -->
20
20
  <link rel="stylesheet" href='https://fonts.googleapis.com/css?family=Merriweather|Titillium+Web'>
21
21
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
22
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
22
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
23
23
  <link rel="stylesheet" href="{{ "assets/alpha-one.css" | relative_url }}">
24
24
 
25
25
  <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
26
26
  <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
27
27
 
28
28
  {% if site.png_icon.size > 0 %}
29
- <link rel="icon" type="image/png" href="{{ site.png_icon | absolute_url }}">
29
+ <link rel="icon" type="image/png" href="{{ site.favicon_png | absolute_url }}">
30
30
  {% endif %}
31
31
  <link rel="canonical" href="{{ page.url | absolute_url }}">
32
32
  {% comment %}
@@ -36,7 +36,7 @@
36
36
 
37
37
  <body>
38
38
  <nav class="navbar navbar-default">
39
- <!-- <div class="container"> -->
39
+ <div class="container">
40
40
  <div class="navbar-header">
41
41
  <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1">
42
42
  <span class="sr-only">Toggle navigation</span>
@@ -83,5 +83,5 @@
83
83
  {% endcomment %}
84
84
  </ul>
85
85
  </div>
86
- <!-- </div> -->
86
+ </div>
87
87
  </nav>
data/_layouts/post.html CHANGED
@@ -20,6 +20,23 @@
20
20
  <div class="content">
21
21
  {{ content | markdownify}}
22
22
  </div>
23
+
24
+ <div class="navigation">
25
+ {% if page.previous.url %}
26
+ <div class="prev">
27
+ <a href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a>
28
+ </div>
29
+ {% endif %}
30
+ {% if page.next.url %}
31
+ <div class="next">
32
+ <a href="{{page.next.url}}">{{page.next.title}} &raquo;</a>
33
+ </div>
34
+ {% endif %}
35
+ <div class="top">
36
+ <a href="#top">[Top of page]</a>
37
+ </div>
38
+ </div>
39
+
23
40
  </div>
24
41
  </article>
25
42
 
data/assets/alpha-one.css CHANGED
@@ -1,43 +1,58 @@
1
1
  body {
2
2
  font-family: 'Titillium Web';
3
3
  font-size: 1.6em;
4
+ margin-top: 0px;
5
+ background: url("wild_oliva.png") fixed;
6
+ }
7
+
8
+ nav.navbar.navbar-default {
9
+ box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
10
+ background: url("blue.png") fixed;
4
11
  margin: 0px;
5
- background-image: url("wild_oliva.png");
6
- background-attachment: fixed;
12
+ border: 0px;
7
13
  }
8
14
 
9
- nav {
10
- background-image: url("blackmamba.png");
11
- background-attachment: fixed;
15
+ .navbar-default .navbar-brand {
16
+ margin-top: 5px;
17
+ margin-bottom: 5px;
18
+ color: #dddddd;
19
+ font-size: 1.2em;
12
20
  }
13
21
 
14
- .navbar {
15
- border-radius: 0px;
22
+ .navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
23
+ color: #dddddd;
24
+ text-shadow: 0px 0px 1px #dddddd;
16
25
  }
17
26
 
18
- .navbar-default {
19
- margin: 0px;
20
- border: 0px;
27
+ .navbar-default .navbar-brand~a:hover, .navbar-default .navbar-brand~a:focus {
28
+ color: white;
29
+ text-shadow: 0px 0px 1px #dddddd;
21
30
  }
22
31
 
23
- .navbar-default .navbar-brand {
32
+ .navbar-default .navbar-nav>li>a {
33
+ margin-top: 5px;
34
+ margin-bottom: 5px;
24
35
  color: #dddddd;
25
36
  }
26
37
 
38
+ .navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
39
+ color: white;
40
+ text-shadow: 0px 0px 1px #dddddd;
41
+ }
27
42
 
28
43
  .subtitle {
29
44
  font-family: 'Titillium Web';
30
45
  }
31
46
 
32
- article > * {
33
- font-family: 'Merriweather';
34
- }
35
-
36
47
  article {
37
48
  padding-top: 50px;
38
- padding-bottom: 100px;
39
- background-image: url("grey.png");
40
- box-shadow: inset 0px 5px 15px 0px rgba(0,0,0,0.5);
49
+ padding-bottom: 80px;
50
+ background-color: white;
51
+ }
52
+
53
+ article > * {
54
+ font-family: 'Merriweather';
55
+ line-height: 150%;
41
56
  }
42
57
 
43
58
  footer {
@@ -56,69 +71,109 @@ a:hover, a:focus {
56
71
  text-decoration: none;
57
72
  }
58
73
 
74
+ h1 {
75
+ margin-top: 40px;
76
+ margin-bottom: 20px;
77
+ }
78
+
79
+ h2 {
80
+ margin-top: 30px;
81
+ margin-bottom: 10px;
82
+ }
83
+
84
+ ul {
85
+ margin-top: 10px;
86
+ margin-bottom: 10px;
87
+ }
59
88
 
89
+ blockquote {
90
+ margin-top: 20px;
91
+ margin-bottom: 20px;
92
+ }
93
+
94
+ table.table.table-striped, div .highlighter-rouge {
95
+ margin-top: 30px;
96
+ margin-bottom: 30px;
97
+ }
98
+
99
+ .navigation {
100
+ margin-top: 100px;
101
+ }
102
+ .navigation .next {
103
+ text-align: right;
104
+ }
105
+ .navigation .top {
106
+ text-align: center;
107
+ }
60
108
 
61
109
 
62
- /* Based on https://richleland.github.io/pygments-css/ */
63
- .highlight { background-color: #ffffff }
110
+ /* From default.css found at https://richleland.github.io/pygments-css/ */
64
111
  .highlight .hll { background-color: #ffffcc }
65
- .highlight .c { color: #999988; font-style: italic } /* Comment */
66
- .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
67
- .highlight .k { color: #000000; font-weight: bold } /* Keyword */
68
- .highlight .o { color: #000000; font-weight: bold } /* Operator */
69
- .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
70
- .highlight .cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */
71
- .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
72
- .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
73
- .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
74
- .highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
75
- .highlight .gr { color: #aa0000 } /* Generic.Error */
76
- .highlight .gh { color: #999999 } /* Generic.Heading */
77
- .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
112
+ .highlight { background: #f8f8f8; }
113
+ .highlight .c { color: #408080; font-style: italic } /* Comment */
114
+ .highlight .err { border: 1px solid #FF0000 } /* Error */
115
+ .highlight .k { color: #008000; font-weight: bold } /* Keyword */
116
+ .highlight .o { color: #666666 } /* Operator */
117
+ .highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
118
+ .highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
119
+ .highlight .cp { color: #BC7A00 } /* Comment.Preproc */
120
+ .highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
121
+ .highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
122
+ .highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
123
+ .highlight .gd { color: #A00000 } /* Generic.Deleted */
124
+ .highlight .ge { font-style: italic } /* Generic.Emph */
125
+ .highlight .gr { color: #FF0000 } /* Generic.Error */
126
+ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
127
+ .highlight .gi { color: #00A000 } /* Generic.Inserted */
78
128
  .highlight .go { color: #888888 } /* Generic.Output */
79
- .highlight .gp { color: #555555 } /* Generic.Prompt */
129
+ .highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
80
130
  .highlight .gs { font-weight: bold } /* Generic.Strong */
81
- .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
82
- .highlight .gt { color: #aa0000 } /* Generic.Traceback */
83
- .highlight .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
84
- .highlight .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
85
- .highlight .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
86
- .highlight .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
87
- .highlight .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
88
- .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
89
- .highlight .m { color: #009999 } /* Literal.Number */
90
- .highlight .s { color: #d01040 } /* Literal.String */
91
- .highlight .na { color: #008080 } /* Name.Attribute */
92
- .highlight .nb { color: #0086B3 } /* Name.Builtin */
93
- .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
94
- .highlight .no { color: #008080 } /* Name.Constant */
95
- .highlight .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
96
- .highlight .ni { color: #800080 } /* Name.Entity */
97
- .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
98
- .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
99
- .highlight .nl { color: #990000; font-weight: bold } /* Name.Label */
100
- .highlight .nn { color: #555555 } /* Name.Namespace */
101
- .highlight .nt { color: #000080 } /* Name.Tag */
102
- .highlight .nv { color: #008080 } /* Name.Variable */
103
- .highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
131
+ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
132
+ .highlight .gt { color: #0044DD } /* Generic.Traceback */
133
+ .highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
134
+ .highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
135
+ .highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
136
+ .highlight .kp { color: #008000 } /* Keyword.Pseudo */
137
+ .highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
138
+ .highlight .kt { color: #B00040 } /* Keyword.Type */
139
+ .highlight .m { color: #666666 } /* Literal.Number */
140
+ .highlight .s { color: #BA2121 } /* Literal.String */
141
+ .highlight .na { color: #7D9029 } /* Name.Attribute */
142
+ .highlight .nb { color: #008000 } /* Name.Builtin */
143
+ .highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
144
+ .highlight .no { color: #880000 } /* Name.Constant */
145
+ .highlight .nd { color: #AA22FF } /* Name.Decorator */
146
+ .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
147
+ .highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
148
+ .highlight .nf { color: #0000FF } /* Name.Function */
149
+ .highlight .nl { color: #A0A000 } /* Name.Label */
150
+ .highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
151
+ .highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
152
+ .highlight .nv { color: #19177C } /* Name.Variable */
153
+ .highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
104
154
  .highlight .w { color: #bbbbbb } /* Text.Whitespace */
105
- .highlight .mf { color: #009999 } /* Literal.Number.Float */
106
- .highlight .mh { color: #009999 } /* Literal.Number.Hex */
107
- .highlight .mi { color: #009999 } /* Literal.Number.Integer */
108
- .highlight .mo { color: #009999 } /* Literal.Number.Oct */
109
- .highlight .sb { color: #d01040 } /* Literal.String.Backtick */
110
- .highlight .sc { color: #d01040 } /* Literal.String.Char */
111
- .highlight .sd { color: #d01040 } /* Literal.String.Doc */
112
- .highlight .s2 { color: #d01040 } /* Literal.String.Double */
113
- .highlight .se { color: #d01040 } /* Literal.String.Escape */
114
- .highlight .sh { color: #d01040 } /* Literal.String.Heredoc */
115
- .highlight .si { color: #d01040 } /* Literal.String.Interpol */
116
- .highlight .sx { color: #d01040 } /* Literal.String.Other */
117
- .highlight .sr { color: #009926 } /* Literal.String.Regex */
118
- .highlight .s1 { color: #d01040 } /* Literal.String.Single */
119
- .highlight .ss { color: #990073 } /* Literal.String.Symbol */
120
- .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
121
- .highlight .vc { color: #008080 } /* Name.Variable.Class */
122
- .highlight .vg { color: #008080 } /* Name.Variable.Global */
123
- .highlight .vi { color: #008080 } /* Name.Variable.Instance */
124
- .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
155
+ .highlight .mb { color: #666666 } /* Literal.Number.Bin */
156
+ .highlight .mf { color: #666666 } /* Literal.Number.Float */
157
+ .highlight .mh { color: #666666 } /* Literal.Number.Hex */
158
+ .highlight .mi { color: #666666 } /* Literal.Number.Integer */
159
+ .highlight .mo { color: #666666 } /* Literal.Number.Oct */
160
+ .highlight .sa { color: #BA2121 } /* Literal.String.Affix */
161
+ .highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
162
+ .highlight .sc { color: #BA2121 } /* Literal.String.Char */
163
+ .highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
164
+ .highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
165
+ .highlight .s2 { color: #BA2121 } /* Literal.String.Double */
166
+ .highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
167
+ .highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
168
+ .highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
169
+ .highlight .sx { color: #008000 } /* Literal.String.Other */
170
+ .highlight .sr { color: #BB6688 } /* Literal.String.Regex */
171
+ .highlight .s1 { color: #BA2121 } /* Literal.String.Single */
172
+ .highlight .ss { color: #19177C } /* Literal.String.Symbol */
173
+ .highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
174
+ .highlight .fm { color: #0000FF } /* Name.Function.Magic */
175
+ .highlight .vc { color: #19177C } /* Name.Variable.Class */
176
+ .highlight .vg { color: #19177C } /* Name.Variable.Global */
177
+ .highlight .vi { color: #19177C } /* Name.Variable.Instance */
178
+ .highlight .vm { color: #19177C } /* Name.Variable.Magic */
179
+ .highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
data/assets/blue.png ADDED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alpha-one
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pierre ROUDIER
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-11-07 00:00:00.000000000 Z
11
+ date: 2018-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: '10.0'
55
55
  description:
56
56
  email:
57
- - contact@pierreroudier.net
57
+ - pierre@roudier.io
58
58
  executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
@@ -67,7 +67,7 @@ files:
67
67
  - _layouts/page.html
68
68
  - _layouts/post.html
69
69
  - assets/alpha-one.css
70
- - assets/blackmamba.png
70
+ - assets/blue.png
71
71
  - assets/grey.png
72
72
  - assets/wild_oliva.png
73
73
  homepage: https://github.com/proudier/alpha-one
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  version: '0'
92
92
  requirements: []
93
93
  rubyforge_project:
94
- rubygems_version: 2.5.1
94
+ rubygems_version: 2.7.3
95
95
  signing_key:
96
96
  specification_version: 4
97
97
  summary: The Jekyll theme styling my personal website
Binary file