millennial 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.md +21 -0
- data/README.md +267 -0
- data/_includes/disqus.html +14 -0
- data/_includes/featured-post.html +7 -0
- data/_includes/footer.html +6 -0
- data/_includes/google-analytics.html +8 -0
- data/_includes/head.html +27 -0
- data/_includes/header.html +24 -0
- data/_includes/post-date.html +17 -0
- data/_includes/post-share.html +7 -0
- data/_includes/related-posts.html +29 -0
- data/_layouts/category.html +9 -0
- data/_layouts/default.html +13 -0
- data/_layouts/home.html +22 -0
- data/_layouts/page.html +12 -0
- data/_layouts/post.html +29 -0
- data/_sass/_-sections-dir.scss +11 -0
- data/_sass/_base.scss +122 -0
- data/_sass/_code.scss +60 -0
- data/_sass/_default.scss +34 -0
- data/_sass/_footer.scss +29 -0
- data/_sass/_header.scss +94 -0
- data/_sass/_home.scss +56 -0
- data/_sass/_page.scss +6 -0
- data/_sass/_post.scss +96 -0
- data/_sass/_social-icons.scss +65 -0
- data/assets/css/main.scss +29 -0
- data/assets/css/syntax.css +65 -0
- data/assets/img/arctic-1.jpg +0 -0
- data/assets/img/arctic-2.jpg +0 -0
- data/assets/img/city-1.jpg +0 -0
- data/assets/img/cuba-1.jpg +0 -0
- data/assets/img/cuba-2.jpg +0 -0
- metadata +147 -0
data/_sass/_home.scss
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
.featured-post {
|
2
|
+
height: 400px;
|
3
|
+
margin: 5px 10px 10px;
|
4
|
+
background-position: center;
|
5
|
+
background-repeat: no-repeat;
|
6
|
+
background-size: cover;
|
7
|
+
position: relative;
|
8
|
+
}
|
9
|
+
.featured-post h2 {
|
10
|
+
bottom: 0;
|
11
|
+
margin: 0;
|
12
|
+
padding: 10px;
|
13
|
+
position: absolute;
|
14
|
+
}
|
15
|
+
.featured-post h2 span {
|
16
|
+
display: inline-block;
|
17
|
+
color: white;
|
18
|
+
font: bold 24px/45px Helvetica, Sans-Serif;
|
19
|
+
letter-spacing: -1px;
|
20
|
+
background: rgb(0, 0, 0); /* fallback color */
|
21
|
+
background: rgba(0, 0, 0, 0.7);
|
22
|
+
padding: 10px;
|
23
|
+
}
|
24
|
+
.featured-post span a {
|
25
|
+
color: white;
|
26
|
+
}
|
27
|
+
.featured-post h1 {
|
28
|
+
margin: 10px;
|
29
|
+
}
|
30
|
+
|
31
|
+
/*
|
32
|
+
Pagination
|
33
|
+
*/
|
34
|
+
|
35
|
+
.pagination {
|
36
|
+
text-align: center;
|
37
|
+
}
|
38
|
+
.pagination a {
|
39
|
+
text-decoration: none;
|
40
|
+
}
|
41
|
+
.pagination-button {
|
42
|
+
color: #999;
|
43
|
+
border: 1px solid #e0e0e0;
|
44
|
+
padding: 15px 45px;
|
45
|
+
margin-top: 10px;
|
46
|
+
margin-bottom: 10px;
|
47
|
+
display: inline-block;
|
48
|
+
font-size: 16px;
|
49
|
+
font-weight: bold;
|
50
|
+
}
|
51
|
+
.pagination-active {
|
52
|
+
color: black;
|
53
|
+
}
|
54
|
+
.pagination-active:hover {
|
55
|
+
background-color: #e0e0e0;
|
56
|
+
}
|
data/_sass/_page.scss
ADDED
data/_sass/_post.scss
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
.post-content {
|
2
|
+
width: 600px;
|
3
|
+
display: block;
|
4
|
+
margin: 10px auto 10px;
|
5
|
+
}
|
6
|
+
.post-date {
|
7
|
+
display: block;
|
8
|
+
margin-bottom: 1rem;
|
9
|
+
color: #9a9a9a;
|
10
|
+
font-size:0.8rem;
|
11
|
+
}
|
12
|
+
.featured-image img {
|
13
|
+
align: middle;
|
14
|
+
margin: 5px auto 25px;
|
15
|
+
display: block;
|
16
|
+
max-width: 600px;
|
17
|
+
}
|
18
|
+
@media (max-width: $container-width) {
|
19
|
+
.post-content {
|
20
|
+
width: 60vw;
|
21
|
+
display: block;
|
22
|
+
margin: 10px auto 10px;
|
23
|
+
}
|
24
|
+
.featured-image img {
|
25
|
+
align: middle;
|
26
|
+
margin: 5px auto 25px;
|
27
|
+
display: block;
|
28
|
+
max-width: 60vw;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
@media (max-width: $tablet-width) {
|
32
|
+
.post-content {
|
33
|
+
width: 95vw;
|
34
|
+
display: block;
|
35
|
+
margin: 10px auto 10px;
|
36
|
+
}
|
37
|
+
.featured-image img {
|
38
|
+
align: middle;
|
39
|
+
margin: 5px auto 25px;
|
40
|
+
display: block;
|
41
|
+
max-width: 95vw;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
.post-share {
|
45
|
+
padding-bottom: 1rem;
|
46
|
+
}
|
47
|
+
.sharing-icons a {
|
48
|
+
padding-right: 10px;
|
49
|
+
}
|
50
|
+
|
51
|
+
/*
|
52
|
+
Related Posts
|
53
|
+
*/
|
54
|
+
|
55
|
+
.related {
|
56
|
+
padding-bottom: 1rem;
|
57
|
+
}
|
58
|
+
.related ul, ol, dl {
|
59
|
+
margin: 0px;
|
60
|
+
}
|
61
|
+
.related-posts {
|
62
|
+
padding: 10px 0px 10px;
|
63
|
+
list-style: none;
|
64
|
+
display: inline-block;
|
65
|
+
}
|
66
|
+
.related-thumbnail {
|
67
|
+
position: relative;
|
68
|
+
width: 600px;
|
69
|
+
height: 200px;
|
70
|
+
overflow: hidden;
|
71
|
+
}
|
72
|
+
.related img {
|
73
|
+
position: absolute;
|
74
|
+
left: 50%;
|
75
|
+
top: 50%;
|
76
|
+
height: auto;
|
77
|
+
width: 600px;
|
78
|
+
-webkit-transform: translate(-50%,-50%);
|
79
|
+
-ms-transform: translate(-50%,-50%);
|
80
|
+
transform: translate(-50%,-50%);
|
81
|
+
}
|
82
|
+
.related-title {
|
83
|
+
float: right;
|
84
|
+
padding-bottom: .5rem;
|
85
|
+
font-family: $base-font-family;
|
86
|
+
}
|
87
|
+
@media (max-width: $container-width) {
|
88
|
+
.related-thumbnail{
|
89
|
+
width: 60vw;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
@media (max-width: $tablet-width) {
|
93
|
+
.related-thumbnail{
|
94
|
+
width: 95vw;
|
95
|
+
}
|
96
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
@mixin social-media-icon($color, $transition){
|
2
|
+
-webkit-transition: $transition;
|
3
|
+
-o-transition: $transition;
|
4
|
+
-ms-transition: $transition;
|
5
|
+
-moz-transition: $transition;
|
6
|
+
transition: $transition;
|
7
|
+
&:hover{
|
8
|
+
color: $color;
|
9
|
+
}
|
10
|
+
}
|
11
|
+
|
12
|
+
.fa-envelope {
|
13
|
+
padding: 5px;
|
14
|
+
@include social-media-icon($envelope-color, $icon-transition-time);
|
15
|
+
}
|
16
|
+
|
17
|
+
.fa-twitter {
|
18
|
+
padding: 5px;
|
19
|
+
@include social-media-icon($twitter-color, $icon-transition-time);
|
20
|
+
}
|
21
|
+
|
22
|
+
.fa-instagram {
|
23
|
+
padding: 5px;
|
24
|
+
@include social-media-icon($instagram-color, $icon-transition-time);
|
25
|
+
}
|
26
|
+
|
27
|
+
.fa-github {
|
28
|
+
padding: 5px;
|
29
|
+
@include social-media-icon($github-color, $icon-transition-time);
|
30
|
+
}
|
31
|
+
|
32
|
+
.fa-linkedin {
|
33
|
+
padding: 5px;
|
34
|
+
@include social-media-icon($linkedin-color, $icon-transition-time);
|
35
|
+
}
|
36
|
+
|
37
|
+
.fa-facebook {
|
38
|
+
padding: 5px;
|
39
|
+
@include social-media-icon($facebook-color, $icon-transition-time);
|
40
|
+
}
|
41
|
+
|
42
|
+
.fa-google-plus {
|
43
|
+
padding: 5px;
|
44
|
+
@include social-media-icon($google-color, $icon-transition-time);
|
45
|
+
}
|
46
|
+
|
47
|
+
.fa-pinterest {
|
48
|
+
padding: 5px;
|
49
|
+
@include social-media-icon($pinterest-color, $icon-transition-time);
|
50
|
+
}
|
51
|
+
|
52
|
+
.fa-medium {
|
53
|
+
padding: 5px;
|
54
|
+
@include social-media-icon($medium-color, $icon-transition-time);
|
55
|
+
}
|
56
|
+
|
57
|
+
.fa-codepen {
|
58
|
+
padding: 5px;
|
59
|
+
@include social-media-icon($codepen-color, $icon-transition-time);
|
60
|
+
}
|
61
|
+
|
62
|
+
.fa-rss-square {
|
63
|
+
padding: 5px;
|
64
|
+
@include social-media-icon($rss-color, $icon-transition-time);
|
65
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
$base-font-family: 'Roboto', sans-serif;
|
5
|
+
$body-font-family: 'Roboto', sans-serif;
|
6
|
+
$code-font-family: "Source Code Pro", monospace;
|
7
|
+
|
8
|
+
$brand-color: black;
|
9
|
+
|
10
|
+
$container-width: 1100px;
|
11
|
+
$tablet-width: 600px;
|
12
|
+
$phone-width: 480px;
|
13
|
+
|
14
|
+
$header-thickness: 56px;
|
15
|
+
|
16
|
+
$icon-transition-time: 1.0s;
|
17
|
+
$envelope-color: #f39c12;
|
18
|
+
$twitter-color: #00aced;
|
19
|
+
$instagram-color: #375989;
|
20
|
+
$github-color: #343434;
|
21
|
+
$linkedin-color: #0073a4;
|
22
|
+
$facebook-color: #3d5b99;
|
23
|
+
$google-color: #e64a41;
|
24
|
+
$pinterest-color: #bd081c;
|
25
|
+
$medium-color: #00AB6C;
|
26
|
+
$codepen-color: black;
|
27
|
+
$rss-color: #ff6600;
|
28
|
+
|
29
|
+
@import "-sections-dir";
|
@@ -0,0 +1,65 @@
|
|
1
|
+
.highlight .hll { background-color: #ffc; }
|
2
|
+
.highlight .c { color: #999; } /* Comment */
|
3
|
+
.highlight .err { color: #a00; background-color: #faa } /* Error */
|
4
|
+
.highlight .k { color: #069; } /* Keyword */
|
5
|
+
.highlight .o { color: #555 } /* Operator */
|
6
|
+
.highlight .cm { color: #09f; font-style: italic } /* Comment.Multiline */
|
7
|
+
.highlight .cp { color: #099 } /* Comment.Preproc */
|
8
|
+
.highlight .c1 { color: #999; } /* Comment.Single */
|
9
|
+
.highlight .cs { color: #999; } /* Comment.Special */
|
10
|
+
.highlight .gd { background-color: #fcc; border: 1px solid #c00 } /* Generic.Deleted */
|
11
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
12
|
+
.highlight .gr { color: #f00 } /* Generic.Error */
|
13
|
+
.highlight .gh { color: #030; } /* Generic.Heading */
|
14
|
+
.highlight .gi { background-color: #cfc; border: 1px solid #0c0 } /* Generic.Inserted */
|
15
|
+
.highlight .go { color: #aaa } /* Generic.Output */
|
16
|
+
.highlight .gp { color: #009; } /* Generic.Prompt */
|
17
|
+
.highlight .gs { } /* Generic.Strong */
|
18
|
+
.highlight .gu { color: #030; } /* Generic.Subheading */
|
19
|
+
.highlight .gt { color: #9c6 } /* Generic.Traceback */
|
20
|
+
.highlight .kc { color: #069; } /* Keyword.Constant */
|
21
|
+
.highlight .kd { color: #069; } /* Keyword.Declaration */
|
22
|
+
.highlight .kn { color: #069; } /* Keyword.Namespace */
|
23
|
+
.highlight .kp { color: #069 } /* Keyword.Pseudo */
|
24
|
+
.highlight .kr { color: #069; } /* Keyword.Reserved */
|
25
|
+
.highlight .kt { color: #078; } /* Keyword.Type */
|
26
|
+
.highlight .m { color: #f60 } /* Literal.Number */
|
27
|
+
.highlight .s { color: #d44950 } /* Literal.String */
|
28
|
+
.highlight .na { color: #4f9fcf } /* Name.Attribute */
|
29
|
+
.highlight .nb { color: #366 } /* Name.Builtin */
|
30
|
+
.highlight .nc { color: #0a8; } /* Name.Class */
|
31
|
+
.highlight .no { color: #360 } /* Name.Constant */
|
32
|
+
.highlight .nd { color: #99f } /* Name.Decorator */
|
33
|
+
.highlight .ni { color: #999; } /* Name.Entity */
|
34
|
+
.highlight .ne { color: #c00; } /* Name.Exception */
|
35
|
+
.highlight .nf { color: #c0f } /* Name.Function */
|
36
|
+
.highlight .nl { color: #99f } /* Name.Label */
|
37
|
+
.highlight .nn { color: #0cf; } /* Name.Namespace */
|
38
|
+
.highlight .nt { color: #2f6f9f; } /* Name.Tag */
|
39
|
+
.highlight .nv { color: #033 } /* Name.Variable */
|
40
|
+
.highlight .ow { color: #000; } /* Operator.Word */
|
41
|
+
.highlight .w { color: #bbb } /* Text.Whitespace */
|
42
|
+
.highlight .mf { color: #f60 } /* Literal.Number.Float */
|
43
|
+
.highlight .mh { color: #f60 } /* Literal.Number.Hex */
|
44
|
+
.highlight .mi { color: #f60 } /* Literal.Number.Integer */
|
45
|
+
.highlight .mo { color: #f60 } /* Literal.Number.Oct */
|
46
|
+
.highlight .sb { color: #c30 } /* Literal.String.Backtick */
|
47
|
+
.highlight .sc { color: #c30 } /* Literal.String.Char */
|
48
|
+
.highlight .sd { color: #c30; font-style: italic } /* Literal.String.Doc */
|
49
|
+
.highlight .s2 { color: #c30 } /* Literal.String.Double */
|
50
|
+
.highlight .se { color: #c30; } /* Literal.String.Escape */
|
51
|
+
.highlight .sh { color: #c30 } /* Literal.String.Heredoc */
|
52
|
+
.highlight .si { color: #a00 } /* Literal.String.Interpol */
|
53
|
+
.highlight .sx { color: #c30 } /* Literal.String.Other */
|
54
|
+
.highlight .sr { color: #3aa } /* Literal.String.Regex */
|
55
|
+
.highlight .s1 { color: #c30 } /* Literal.String.Single */
|
56
|
+
.highlight .ss { color: #fc3 } /* Literal.String.Symbol */
|
57
|
+
.highlight .bp { color: #366 } /* Name.Builtin.Pseudo */
|
58
|
+
.highlight .vc { color: #033 } /* Name.Variable.Class */
|
59
|
+
.highlight .vg { color: #033 } /* Name.Variable.Global */
|
60
|
+
.highlight .vi { color: #033 } /* Name.Variable.Instance */
|
61
|
+
.highlight .il { color: #f60 } /* Literal.Number.Integer.Long */
|
62
|
+
|
63
|
+
.css .o,
|
64
|
+
.css .o + .nt,
|
65
|
+
.css .nt + .nt { color: #999; }
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: millennial
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Paul Le
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-05-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-feed
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.6'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.6'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-paginate
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.1'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jekyll-sitemap
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.3'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.3'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jekyll-seo-tag
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '2.6'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '2.6'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- hello@paulle.ca
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- LICENSE.md
|
91
|
+
- README.md
|
92
|
+
- _includes/disqus.html
|
93
|
+
- _includes/featured-post.html
|
94
|
+
- _includes/footer.html
|
95
|
+
- _includes/google-analytics.html
|
96
|
+
- _includes/head.html
|
97
|
+
- _includes/header.html
|
98
|
+
- _includes/post-date.html
|
99
|
+
- _includes/post-share.html
|
100
|
+
- _includes/related-posts.html
|
101
|
+
- _layouts/category.html
|
102
|
+
- _layouts/default.html
|
103
|
+
- _layouts/home.html
|
104
|
+
- _layouts/page.html
|
105
|
+
- _layouts/post.html
|
106
|
+
- _sass/_-sections-dir.scss
|
107
|
+
- _sass/_base.scss
|
108
|
+
- _sass/_code.scss
|
109
|
+
- _sass/_default.scss
|
110
|
+
- _sass/_footer.scss
|
111
|
+
- _sass/_header.scss
|
112
|
+
- _sass/_home.scss
|
113
|
+
- _sass/_page.scss
|
114
|
+
- _sass/_post.scss
|
115
|
+
- _sass/_social-icons.scss
|
116
|
+
- assets/css/main.scss
|
117
|
+
- assets/css/syntax.css
|
118
|
+
- assets/img/arctic-1.jpg
|
119
|
+
- assets/img/arctic-2.jpg
|
120
|
+
- assets/img/city-1.jpg
|
121
|
+
- assets/img/cuba-1.jpg
|
122
|
+
- assets/img/cuba-2.jpg
|
123
|
+
homepage: https://github.com/LeNPaul/Millennial
|
124
|
+
licenses:
|
125
|
+
- MIT
|
126
|
+
metadata: {}
|
127
|
+
post_install_message:
|
128
|
+
rdoc_options: []
|
129
|
+
require_paths:
|
130
|
+
- lib
|
131
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
requirements: []
|
142
|
+
rubygems_version: 3.2.17
|
143
|
+
signing_key:
|
144
|
+
specification_version: 4
|
145
|
+
summary: A minimalist Jekyll theme for running a blog or publication powered by Jekyll
|
146
|
+
and GitHub Pages
|
147
|
+
test_files: []
|