diazsepta.github.io 0.1.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/_includes/footer.html +8 -0
- data/_includes/head.html +30 -0
- data/_includes/header.html +43 -0
- data/_layouts/default.html +20 -0
- data/_layouts/home.html +36 -0
- data/_layouts/page.html +9 -0
- data/_layouts/post.html +27 -0
- data/_sass/diazsepta/_base.scss +90 -0
- data/_sass/diazsepta/_layout.scss +326 -0
- data/_sass/diazsepta/_syntax-highlighting.scss +63 -0
- data/_sass/master.scss +53 -0
- data/assets/css/Style.scss +5 -0
- data/assets/data/chrome-passwords.txt +1 -0
- data/assets/fonts/MesloLG_v1.2.1/About Meslo LG v1.2.1.pdf +0 -0
- data/assets/fonts/MesloLG_v1.2.1/MesloLGS-bold-webfont.woff2 +0 -0
- data/assets/fonts/MesloLG_v1.2.1/MesloLGS-regular-webfont.woff2 +0 -0
- data/assets/img/curriculum.png +0 -0
- data/assets/img/opengraph.jpg +0 -0
- data/assets/img/posts/thumb/2019-03-30-welcome-to-jekyll.md.jpg +0 -0
- data/assets/img/snapshot.jpg +0 -0
- data/assets/img/untitled.png +0 -0
- metadata +39 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3129de36d8615aa30a49d92bc4f077ff95f67f3cd44985bc0789cafa44d5e193
|
4
|
+
data.tar.gz: 22b68c8d1a6f9e5ce4b7a7973869194e1521dcb1a7a6f2a6150a199f6ad07a25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b128529d37dcc66bcc7797dc5b63a9e93570ed652b99150e6ba750fb864c5a58e209bbd5f400e462202bf4b102c2ae025e3e19dfd54a0f6b481c6520bf9c2890
|
7
|
+
data.tar.gz: 423113109bf3395a4730ae86c19641cc2b63ce372ecfaa2e788685c6796fbb6b39e13c1658c2ed35af157ccc5d0230c2e671343a86aa33a5f5b8b67454f548fb
|
data/README.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
## diazsepta.github.io
|
2
|
+
[![Build Status](https://travis-ci.org/diazsepta/diazsepta.github.io.svg?branch=master)](https://travis-ci.org/diazsepta/diazsepta.github.io) ![jekyll](https://img.shields.io/badge/powered%20by-jekyll-red.svg)
|
3
|
+
![release](https://img.shields.io/github/release-pre/diazsepta/diazsepta.github.io.svg)
|
4
|
+
![license](https://img.shields.io/github/license/diazsepta/diazsepta.github.io.svg)
|
5
|
+
![website](https://img.shields.io/website/https/diazsepta.github.io.svg)
|
6
|
+
|
7
|
+
Welcome to my Jekyll theme repo! diazsepta.github.io just for use personal, sengol bacok, curry auto gelud !
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<footer>
|
2
|
+
<div class="max-width">
|
3
|
+
(C) 2018-2019
|
4
|
+
<a href="{{ relative_url }}" style="color: dodgerblue">diazsepta</a> |
|
5
|
+
<a href="{{ "feed.xml" | relative_url }}">feed</a>,
|
6
|
+
<a href="{{ "terms-privacy" | relative_url }}">terms & privacy</a>.
|
7
|
+
</div>
|
8
|
+
</footer>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
5
|
+
<link rel="shortcut icon" type="image/x-icon" href="{{ "favicon.ico" | relative_url }}">
|
6
|
+
<link rel="stylesheet" href="/assets/css/style.css">
|
7
|
+
|
8
|
+
{% seo %}
|
9
|
+
|
10
|
+
{% if page.path contains '_posts' %}
|
11
|
+
<style media="screen">
|
12
|
+
header:before {
|
13
|
+
background-image: url( {{ page.image.path | relative_url }} )!important;
|
14
|
+
background-position: 50% 50%!important;
|
15
|
+
opacity: 0.25;
|
16
|
+
background-color: black;
|
17
|
+
}
|
18
|
+
</style>
|
19
|
+
{% endif %}
|
20
|
+
|
21
|
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
22
|
+
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-143534721-1"></script> -->
|
23
|
+
<script>
|
24
|
+
window.dataLayer = window.dataLayer || [];
|
25
|
+
function gtag(){dataLayer.push(arguments);}
|
26
|
+
gtag('js', new Date());
|
27
|
+
|
28
|
+
gtag('config', 'UA-143534721-1');
|
29
|
+
</script>
|
30
|
+
</head>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<header>
|
2
|
+
<div class="max-width">
|
3
|
+
<nav>
|
4
|
+
<div id="logo"></div>
|
5
|
+
<div id="nav-menu">
|
6
|
+
<div class="title">D14Zsepta</div>
|
7
|
+
<menu>
|
8
|
+
<a class="home" href="/">_$</a>
|
9
|
+
<div class="dropdown">
|
10
|
+
menu
|
11
|
+
<ul>
|
12
|
+
<li><a href="{{ "curriculum-vitae" | relative_url }}">└── curriculum-vitae</a></li>
|
13
|
+
</ul>
|
14
|
+
</div>
|
15
|
+
</menu>
|
16
|
+
</div>
|
17
|
+
</nav>
|
18
|
+
{% if page.path contains '.md' %}
|
19
|
+
<section id="posts_header" itemscope itemprop="headline" itemtype="http://schema.org/BlogPosting">
|
20
|
+
<a href="{{ page.url | relative_url }}" itemprop="url">
|
21
|
+
<h1 itemprop="name headline">{{ page.title | escape }}</h1>
|
22
|
+
</a>
|
23
|
+
<div id="meta">
|
24
|
+
<span itemprop="author" itemscope itemtype="http://schema.org/Person">{{ site.title | escape }}</span>
|
25
|
+
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
26
|
+
{{ page.date | date: "%Y-%m-%d - %H:%M" }}
|
27
|
+
</time>
|
28
|
+
<sub id="{{ page.categories }}">{{ page.categories }}</sub>
|
29
|
+
</div>
|
30
|
+
</section>
|
31
|
+
{% else %}
|
32
|
+
<section id="about">
|
33
|
+
Hello internet(s), saya diaz atau sering di panggil yas(s).
|
34
|
+
Dari <a href="{{ site.links.wikipedia }}" target="_blank">Kijang Kota</a> now working in home as a vvibu.
|
35
|
+
Saya tidak memiliki formal college education, but i have skills, jadi pm saja jika anda mau
|
36
|
+
<a href="{{ site.links.messenger }}" target="_blank">hire saya</a>. Saya hobi begadang dan mancing meskipun tidak pernah dapat ikan,
|
37
|
+
saya juga menyukai <a href="{{ site.links.anilist }}" target="_blank">animu</a>, hentai/<a href="{{ site.links.nhentai }}" target="_blank">dojin</a>,
|
38
|
+
shitpost, <a href="{{ site.links.soundcloud }}" target="_blank">music</a>, cat, astronomy, computer and girls short hair with glasses...
|
39
|
+
I am easily reachable on <a class="messenger" href="{{ site.links.messenger }}" target="_blanks"><b>messenger</b></a>.
|
40
|
+
</section>
|
41
|
+
{% endif %}
|
42
|
+
</div>
|
43
|
+
</header>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: "id" }}" dir="ltr">
|
3
|
+
|
4
|
+
{%- include head.html -%}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
|
8
|
+
{%- include header.html -%}
|
9
|
+
|
10
|
+
<main>
|
11
|
+
|
12
|
+
{{ content }}
|
13
|
+
|
14
|
+
</main>
|
15
|
+
|
16
|
+
{%- include footer.html -%}
|
17
|
+
|
18
|
+
<!-- <script id="dsq-count-scr" src="//diazsepta.disqus.com/count.js" async></script> -->
|
19
|
+
</body>
|
20
|
+
</html>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<section id="writing">
|
6
|
+
<h3>blogs :</h3>
|
7
|
+
<ul id="post_list">
|
8
|
+
{% for post in paginator.posts %}
|
9
|
+
<li>
|
10
|
+
<time datetime="{{ post.date | date_to_xmlschema }}">
|
11
|
+
{{ post.date | date: "%Y-%m-%d" }}
|
12
|
+
</time>
|
13
|
+
<a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
14
|
+
</li>
|
15
|
+
{%- endfor -%}
|
16
|
+
</ul>
|
17
|
+
{% if paginator.total_pages > 0 %}
|
18
|
+
<div id="posts_paginator">
|
19
|
+
{% if paginator.previous_page %}
|
20
|
+
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}"><</a>
|
21
|
+
{% endif %}
|
22
|
+
Page {{ paginator.page }} of {{ paginator.total_pages }}
|
23
|
+
{% if paginator.next_page %}
|
24
|
+
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}">></a>
|
25
|
+
{% endif %}
|
26
|
+
</div>
|
27
|
+
{% endif %}
|
28
|
+
</section>
|
29
|
+
|
30
|
+
<!-- WARNING: static itemtype -->
|
31
|
+
<section id="projects">
|
32
|
+
<h3>projects :</h3>
|
33
|
+
<ul id="project-list">
|
34
|
+
<li>coming soon<a href="#">#</a></li>
|
35
|
+
</ul>
|
36
|
+
</section>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
comments: true
|
4
|
+
---
|
5
|
+
|
6
|
+
<article itemscope itemprop="articleBody" itemtype="http://schema.org/BlogPosting">
|
7
|
+
|
8
|
+
{{ content }}
|
9
|
+
|
10
|
+
{%- if page.comments != false and jekyll.environment == "production" -%}
|
11
|
+
|
12
|
+
<div id="disqus_thread"></div>
|
13
|
+
<script>
|
14
|
+
(function () {
|
15
|
+
var d = document, s = d.createElement('script');
|
16
|
+
// s.src = 'https://diazsepta.disqus.com/embed.js';
|
17
|
+
s.setAttribute('data-timestamp', +new Date());
|
18
|
+
(d.head || d.body).appendChild(s);
|
19
|
+
})();
|
20
|
+
</script>
|
21
|
+
<noscript>
|
22
|
+
Please enable JavaScript to view the
|
23
|
+
<a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
|
24
|
+
</noscript>
|
25
|
+
|
26
|
+
{%- endif -%}
|
27
|
+
</article>
|
@@ -0,0 +1,90 @@
|
|
1
|
+
body, pre, xmp, plaintext, listing, ul, menu, main,
|
2
|
+
dir, input, h1, h2, h3, h4, h5, h6, p, a,
|
3
|
+
blockquote, figure, hr, dl, dd, ol {
|
4
|
+
display: block;
|
5
|
+
padding: 0;
|
6
|
+
margin: 0;
|
7
|
+
}
|
8
|
+
|
9
|
+
body {
|
10
|
+
font: normal small $font-family;
|
11
|
+
font-kerning: normal;
|
12
|
+
line-height: normal;
|
13
|
+
color: $text-color;
|
14
|
+
background-color: $background;
|
15
|
+
}
|
16
|
+
|
17
|
+
.max-width {
|
18
|
+
max-width: $laptop;
|
19
|
+
margin: 0 auto;
|
20
|
+
|
21
|
+
@include media-query($laptop){
|
22
|
+
padding: 0 10px;
|
23
|
+
};
|
24
|
+
}
|
25
|
+
|
26
|
+
input, button, select, textarea {
|
27
|
+
display: none;
|
28
|
+
}
|
29
|
+
|
30
|
+
b, strong {font-weight: bolder;}
|
31
|
+
summary {display: list-item;}
|
32
|
+
legend {
|
33
|
+
box-sizing: border-box;
|
34
|
+
color: inherit;
|
35
|
+
display: table;
|
36
|
+
max-width: 100%;
|
37
|
+
padding: 0;
|
38
|
+
white-space: normal;
|
39
|
+
}
|
40
|
+
|
41
|
+
a {
|
42
|
+
color: inherit;
|
43
|
+
text-decoration: none;
|
44
|
+
background-color: transparent;
|
45
|
+
|
46
|
+
&:hover {
|
47
|
+
color: $color;
|
48
|
+
text-decoration: underline;
|
49
|
+
transition: .7s;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
abbr[title] {
|
54
|
+
border-bottom: none;
|
55
|
+
text-decoration: underline;
|
56
|
+
text-decoration: underline dotted;
|
57
|
+
}
|
58
|
+
|
59
|
+
code, kbd, samp, pre, xmp, plaintext, listing {
|
60
|
+
font-family: monospace;
|
61
|
+
white-space: pre-wrap;
|
62
|
+
}
|
63
|
+
|
64
|
+
h1, h2, h3, h4, h5, h6 {font-weight: bold;}
|
65
|
+
hr {
|
66
|
+
box-sizing: content-box;
|
67
|
+
height: 0;
|
68
|
+
overflow: visible;
|
69
|
+
}
|
70
|
+
|
71
|
+
li {list-style: none;}
|
72
|
+
ul, menu, dir {
|
73
|
+
list-style-type: disc
|
74
|
+
}
|
75
|
+
|
76
|
+
img {border-style: none}
|
77
|
+
div {display: inherit;}
|
78
|
+
* {
|
79
|
+
box-sizing: border-box;
|
80
|
+
}
|
81
|
+
|
82
|
+
::-webkit-scrollbar {width: 7px;}
|
83
|
+
::-webkit-scrollbar-track {background: $background;}
|
84
|
+
::-webkit-scrollbar-thumb {
|
85
|
+
background: $color;
|
86
|
+
|
87
|
+
&:hover {
|
88
|
+
background: #007bf3;
|
89
|
+
}
|
90
|
+
}
|
@@ -0,0 +1,326 @@
|
|
1
|
+
header {
|
2
|
+
position: relative;
|
3
|
+
padding: 50px 0;
|
4
|
+
width: 100%;
|
5
|
+
|
6
|
+
&:before {
|
7
|
+
position: absolute;
|
8
|
+
content: "";
|
9
|
+
|
10
|
+
@include header-before(center, 0.2) {
|
11
|
+
background-size: cover;
|
12
|
+
background-repeat: no-repeat;
|
13
|
+
top: 0; bottom: 0; left: 0; right: 0;
|
14
|
+
background-image: url($header-image);
|
15
|
+
};
|
16
|
+
}
|
17
|
+
|
18
|
+
#about, #posts_header {
|
19
|
+
position: relative;
|
20
|
+
margin-top: 50px;
|
21
|
+
}
|
22
|
+
|
23
|
+
#about {
|
24
|
+
line-height: 1.7em;
|
25
|
+
text-align: justify;
|
26
|
+
|
27
|
+
a {
|
28
|
+
display: inline-block;
|
29
|
+
text-decoration: underline;
|
30
|
+
}
|
31
|
+
|
32
|
+
.messenger {
|
33
|
+
text-decoration: none;
|
34
|
+
color: $color;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
// OPTIMIZE: if page.path contains '.md'
|
39
|
+
#posts_header {
|
40
|
+
display: grid;
|
41
|
+
padding: 25px 0;
|
42
|
+
|
43
|
+
a {
|
44
|
+
text-decoration: none;
|
45
|
+
|
46
|
+
h1 {
|
47
|
+
margin-bottom: 10px;
|
48
|
+
line-height: 0.8em;
|
49
|
+
font-weight: normal;
|
50
|
+
text-transform: capitalize;
|
51
|
+
|
52
|
+
@include media-query($mobile-l){
|
53
|
+
line-height: normal;
|
54
|
+
};
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
#meta {
|
59
|
+
display: flex;
|
60
|
+
font-size: smaller;
|
61
|
+
|
62
|
+
span {
|
63
|
+
margin-right: 10px;
|
64
|
+
padding-right: 10px;
|
65
|
+
border-right: 1px dotted white;
|
66
|
+
}
|
67
|
+
|
68
|
+
time {
|
69
|
+
margin-right: 10px;
|
70
|
+
}
|
71
|
+
|
72
|
+
sub {
|
73
|
+
padding: 0 5px;
|
74
|
+
border: 1px dotted;
|
75
|
+
border-radius: 3px;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
@include media-query($mobile-l){
|
81
|
+
padding: 40px 0;
|
82
|
+
|
83
|
+
#about, #posts_header {
|
84
|
+
margin-top: 40px;
|
85
|
+
text-align: left;
|
86
|
+
}
|
87
|
+
};
|
88
|
+
}
|
89
|
+
|
90
|
+
nav {
|
91
|
+
position: relative;
|
92
|
+
display: flex;
|
93
|
+
width: 100%;
|
94
|
+
|
95
|
+
#logo {
|
96
|
+
border: 2px dashed white;
|
97
|
+
border-radius: 5px;
|
98
|
+
width: 40px;
|
99
|
+
height: 40px;
|
100
|
+
|
101
|
+
@include header-before(center, 1) {
|
102
|
+
background-size: cover;
|
103
|
+
background-image: url($navbar-logo);
|
104
|
+
};
|
105
|
+
}
|
106
|
+
|
107
|
+
#nav-menu {
|
108
|
+
display: grid;
|
109
|
+
padding-left: 15px;
|
110
|
+
|
111
|
+
.title {
|
112
|
+
font-size: x-large;
|
113
|
+
font-weight: bold;
|
114
|
+
line-height: 1em;
|
115
|
+
color: $color;
|
116
|
+
}
|
117
|
+
|
118
|
+
menu {
|
119
|
+
display: flex;
|
120
|
+
|
121
|
+
.home {
|
122
|
+
padding-right: 10px;
|
123
|
+
border-right: 1px dotted white;
|
124
|
+
font-size: x-small;
|
125
|
+
|
126
|
+
&:hover {
|
127
|
+
text-decoration: none;
|
128
|
+
}
|
129
|
+
}
|
130
|
+
|
131
|
+
.dropdown {
|
132
|
+
display: flex;
|
133
|
+
margin-left: 10px;
|
134
|
+
font-size: x-small;
|
135
|
+
width: 100%;
|
136
|
+
cursor: pointer;
|
137
|
+
|
138
|
+
ul {
|
139
|
+
position: absolute;
|
140
|
+
display: none;
|
141
|
+
margin-top: 15px;
|
142
|
+
z-index: 1;
|
143
|
+
|
144
|
+
li {
|
145
|
+
margin-bottom: 2px;
|
146
|
+
|
147
|
+
a {
|
148
|
+
text-decoration: none;
|
149
|
+
}
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
&:hover ul {
|
154
|
+
display: inline-block;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
main {
|
162
|
+
max-width: $laptop;
|
163
|
+
margin: 0 auto;
|
164
|
+
|
165
|
+
#writing, #projects, #comments {
|
166
|
+
display: grid;
|
167
|
+
margin-top: 50px;
|
168
|
+
|
169
|
+
h3 {
|
170
|
+
margin-bottom: 10px;
|
171
|
+
}
|
172
|
+
|
173
|
+
#post_list, #project-list {
|
174
|
+
margin-top: 15px;
|
175
|
+
|
176
|
+
li {
|
177
|
+
display: flex;
|
178
|
+
margin-bottom: 10px;
|
179
|
+
padding-left: 15px;
|
180
|
+
|
181
|
+
time {
|
182
|
+
// color: lightgray;
|
183
|
+
}
|
184
|
+
|
185
|
+
a {
|
186
|
+
padding-left: 10px;
|
187
|
+
}
|
188
|
+
}
|
189
|
+
}
|
190
|
+
|
191
|
+
#posts_paginator {
|
192
|
+
display: flex;
|
193
|
+
justify-content: center;
|
194
|
+
margin-top: 50px;
|
195
|
+
|
196
|
+
a {
|
197
|
+
padding: 0 10px;
|
198
|
+
text-decoration: none;
|
199
|
+
font-weight: bold;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
@include media-query($laptop){
|
204
|
+
padding: 0 10px;
|
205
|
+
};
|
206
|
+
|
207
|
+
@include media-query($mobile-l){
|
208
|
+
margin-top: 40px;
|
209
|
+
|
210
|
+
#posts_paginator {
|
211
|
+
margin-top: 40px;
|
212
|
+
}
|
213
|
+
|
214
|
+
#post_list, #project-list {
|
215
|
+
li {
|
216
|
+
padding-left: 0;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
};
|
220
|
+
}
|
221
|
+
}
|
222
|
+
|
223
|
+
article {
|
224
|
+
display: grid;
|
225
|
+
margin-top: 50px;
|
226
|
+
|
227
|
+
img {
|
228
|
+
width: 100%;
|
229
|
+
}
|
230
|
+
|
231
|
+
h1,h2,h3,h4,h5,h6 {
|
232
|
+
margin-top: 10px;
|
233
|
+
margin-bottom: 5px;
|
234
|
+
font-weight: bold;
|
235
|
+
}
|
236
|
+
|
237
|
+
h1,h2,h3 {
|
238
|
+
color: $color;
|
239
|
+
|
240
|
+
&:first-child {
|
241
|
+
margin-top: 0;
|
242
|
+
}
|
243
|
+
}
|
244
|
+
|
245
|
+
p, ol {
|
246
|
+
margin-bottom: 10px;
|
247
|
+
line-height: 1.7em;
|
248
|
+
text-align: justify;
|
249
|
+
|
250
|
+
a {
|
251
|
+
display: inline-block;
|
252
|
+
text-decoration: underline;
|
253
|
+
}
|
254
|
+
|
255
|
+
em {
|
256
|
+
padding: 0 5px;
|
257
|
+
border: 1px dashed white;
|
258
|
+
border-radius: 3px;
|
259
|
+
font-style: normal;
|
260
|
+
}
|
261
|
+
}
|
262
|
+
|
263
|
+
ol {
|
264
|
+
text-align: left;
|
265
|
+
|
266
|
+
li {
|
267
|
+
list-style: unset;
|
268
|
+
}
|
269
|
+
}
|
270
|
+
|
271
|
+
table {
|
272
|
+
margin-bottom: 10px;
|
273
|
+
border: 1px dashed white;
|
274
|
+
border-spacing: 0;
|
275
|
+
text-align: left;
|
276
|
+
|
277
|
+
thead {
|
278
|
+
text-align: center;
|
279
|
+
}
|
280
|
+
|
281
|
+
td {
|
282
|
+
padding: 3px;
|
283
|
+
border-top: 1px dashed white;
|
284
|
+
border-left: 1px dashed white;
|
285
|
+
}
|
286
|
+
}
|
287
|
+
|
288
|
+
figure, .highlighter-rouge {
|
289
|
+
margin-bottom: 10px;
|
290
|
+
padding: 20px;
|
291
|
+
border-radius: 5px;
|
292
|
+
background-color: $highlight;
|
293
|
+
|
294
|
+
code {
|
295
|
+
font-size: larger;
|
296
|
+
line-height: 1.3em;
|
297
|
+
text-transform: lowercase;
|
298
|
+
}
|
299
|
+
}
|
300
|
+
|
301
|
+
@include media-query($laptop){
|
302
|
+
padding: 0 10px;
|
303
|
+
};
|
304
|
+
|
305
|
+
@include media-query($mobile-l){
|
306
|
+
margin-top: 40px;
|
307
|
+
};
|
308
|
+
}
|
309
|
+
|
310
|
+
footer {
|
311
|
+
margin: 50px 0;
|
312
|
+
font-size: smaller;
|
313
|
+
width: 100%;
|
314
|
+
|
315
|
+
a {
|
316
|
+
display: inline-block;
|
317
|
+
|
318
|
+
&:hover {
|
319
|
+
color: $color;
|
320
|
+
}
|
321
|
+
}
|
322
|
+
|
323
|
+
@include media-query($mobile-l){
|
324
|
+
margin: 40px 0;
|
325
|
+
};
|
326
|
+
}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
.c {color: #998; font-style: italic} // Comment
|
2
|
+
.err {color: #a61717; background-color: #e3d2d2} // Error
|
3
|
+
.k {font-weight: bold} // Keyword
|
4
|
+
.o {font-weight: bold} // Operator
|
5
|
+
.cm {color: #998; font-style: italic} // Comment.Multiline
|
6
|
+
.cp {color: #999; font-weight: bold} // Comment.Preproc
|
7
|
+
.c1 {color: #998; font-style: italic} // Comment.Single
|
8
|
+
.cs {color: #999; font-weight: bold; font-style: italic} // Comment.Special
|
9
|
+
.gd {color: #000; background-color: #fdd} // Generic.Deleted
|
10
|
+
.gd .x {color: #000; background-color: #faa} // Generic.Deleted.Specific
|
11
|
+
.ge {font-style: italic} // Generic.Emph
|
12
|
+
.gr {color: #a00} // Generic.Error
|
13
|
+
.gh {color: #999} // Generic.Heading
|
14
|
+
.gi {color: #000; background-color: #dfd} // Generic.Inserted
|
15
|
+
.gi .x {color: #000; background-color: #afa} // Generic.Inserted.Specific
|
16
|
+
.go {color: #888} // Generic.Output
|
17
|
+
.gp {color: #555} // Generic.Prompt
|
18
|
+
.gs {font-weight: bold} // Generic.Strong
|
19
|
+
.gu {color: #aaa} // Generic.Subheading
|
20
|
+
.gt {color: #a00} // Generic.Traceback
|
21
|
+
.kc {font-weight: bold} // Keyword.Constant
|
22
|
+
.kd {font-weight: bold} // Keyword.Declaration
|
23
|
+
.kp {font-weight: bold} // Keyword.Pseudo
|
24
|
+
.kr {font-weight: bold} // Keyword.Reserved
|
25
|
+
.kt {color: #458; font-weight: bold} // Keyword.Type
|
26
|
+
.m {color: #099} // Literal.Number
|
27
|
+
.s {color: #d14} // Literal.String
|
28
|
+
.na {color: #008080} // Name.Attribute
|
29
|
+
.nb {color: #0086B3} // Name.Builtin
|
30
|
+
.nc {color: #458; font-weight: bold} // Name.Class
|
31
|
+
.no {color: #008080} // Name.Constant
|
32
|
+
.ni {color: #800080} // Name.Entity
|
33
|
+
.ne {color: #900; font-weight: bold} // Name.Exception
|
34
|
+
.nf {color: #900; font-weight: bold} // Name.Function
|
35
|
+
.nn {color: #555} // Name.Namespace
|
36
|
+
.nt {color: #000080} // Name.Tag
|
37
|
+
.nv {color: #008080} // Name.Variable
|
38
|
+
.ow {font-weight: bold} // Operator.Word
|
39
|
+
.w {color: #bbb} // Text.Whitespace
|
40
|
+
.mf {color: #099} // Literal.Number.Float
|
41
|
+
.mh {color: #099} // Literal.Number.Hex
|
42
|
+
.mi {color: #099} // Literal.Number.Integer
|
43
|
+
.mo {color: #099} // Literal.Number.Oct
|
44
|
+
.sb {color: #d14} // Literal.String.Backtick
|
45
|
+
.sc {color: #d14} // Literal.String.Char
|
46
|
+
.sd {color: #d14} // Literal.String.Doc
|
47
|
+
.s2 {color: #d14} // Literal.String.Double
|
48
|
+
.se {color: #d14} // Literal.String.Escape
|
49
|
+
.sh {color: #d14} // Literal.String.Heredoc
|
50
|
+
.si {color: #d14} // Literal.String.Interpol
|
51
|
+
.sx {color: #d14} // Literal.String.Other
|
52
|
+
.sr {color: #009926} // Literal.String.Regex
|
53
|
+
.s1 {color: #d14} // Literal.String.Single
|
54
|
+
.ss {color: #990073} // Literal.String.Symbol
|
55
|
+
.bp {color: #999} // Name.Builtin.Pseudo
|
56
|
+
.vc {color: #008080} // Name.Variable.Class
|
57
|
+
.vg {color: #008080} // Name.Variable.Global
|
58
|
+
.vi {color: #008080} // Name.Variable.Instance
|
59
|
+
.il {color: #099} // Literal.Number.Integer.Long
|
60
|
+
|
61
|
+
// categories highlighting
|
62
|
+
#docs {color: dodgerblue}
|
63
|
+
#error, #jekyll {color: red}
|
data/_sass/master.scss
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/**
|
3
|
+
* @package diazsepta.master_scss
|
4
|
+
*
|
5
|
+
* @copyright Copyright (C) 2018-2019 DiazSepta, All rights reserved.
|
6
|
+
* @license MIT Massachusetts Institute of Technology License; see LICENSE.md
|
7
|
+
*
|
8
|
+
*
|
9
|
+
*/
|
10
|
+
|
11
|
+
$font-family: "MesloLGS", monospace !default;
|
12
|
+
$header-image: '/assets/img/snapshot.jpg' !default;
|
13
|
+
$navbar-logo: '/assets/img/untitled.png' !default;
|
14
|
+
|
15
|
+
// global colors
|
16
|
+
$color: dodgerblue !default;
|
17
|
+
$text-color: white !default;
|
18
|
+
$background: #181e35 !default;
|
19
|
+
$highlight: #151b31 !default;
|
20
|
+
|
21
|
+
// w.content area
|
22
|
+
$laptop: 1024px !default;
|
23
|
+
$mobile-l: 425px !default;
|
24
|
+
$mobile-m: 375px !default;
|
25
|
+
$mobile-s: 320px !default;
|
26
|
+
|
27
|
+
// WARNING: mixin only uses max-width, in a deprecated, desktop-first
|
28
|
+
// approach, whereas media queries used elsewhere now use min-width.
|
29
|
+
@mixin media-query($device) {
|
30
|
+
@media screen and (max-width: $device) {
|
31
|
+
@content;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
// mixin @font-face
|
36
|
+
@mixin font-face($weight, $url) {
|
37
|
+
src: url($url) format('woff2');
|
38
|
+
font-weight: $weight;
|
39
|
+
@content;
|
40
|
+
}
|
41
|
+
|
42
|
+
// mixin background header:before
|
43
|
+
@mixin header-before($position, $opacity) {
|
44
|
+
background-position: $position;
|
45
|
+
opacity: $opacity;
|
46
|
+
@content;
|
47
|
+
}
|
48
|
+
|
49
|
+
// import partials
|
50
|
+
@import "diazsepta/_base";
|
51
|
+
@import "diazsepta/_layout.scss";
|
52
|
+
@import "diazsepta/_font-face.scss";
|
53
|
+
@import "diazsepta/_syntax-highlighting.scss";
|
@@ -0,0 +1 @@
|
|
1
|
+
DIAZ HEXA BYTE 616e 696c 6973 742e 636f 2c68 7474 7073 3a2f 2f61 6e69 6c69 7374 2e63 6f2f 6c6f 6769 6e2c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 7036 4a78 5573 3336 5042 5061 354c 7365 0a6d 792e 6178 6973 6e65 742e 6964 2c68 7474 7073 3a2f 2f6d 792e 6178 6973 6e65 742e 6964 2f2c 3632 3833 3138 3439 3730 3437 342c 686b 5659 4870 4773 4457 6a4d 6a66 3866 0a77 7777 2e62 756b 616c 6170 616b 2e63 6f6d 2c68 7474 7073 3a2f 2f77 7777 2e62 756b 616c 6170 616b 2e63 6f6d 2f2c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 6a4a 4a69 374a 4342 3246 726a 414b 6e41 0a64 6973 636f 7264 6170 702e 636f 6d2c 6874 7470 733a 2f2f 6469 7363 6f72 6461 7070 2e63 6f6d 2f6c 6f67 696e 2c6d 2e64 6961 7a73 6570 7461 4067 6d61 696c 2e63 6f6d 2c4d 5253 7855 506b 4b47 6537 6667 7456 580a 6c6f 6769 6e2e 6573 6574 2e63 6f6d 2c68 7474 7073 3a2f 2f6c 6f67 696e 2e65 7365 742e 636f 6d2f 4c6f 6769 6e2f 496e 6465 782c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 6b42 4835 736e 5744 7047 4134 4854 4e4b 0a62 7573 696e 6573 732e 6661 6365 626f 6f6b 2e63 6f6d 2c68 7474 7073 3a2f 2f62 7573 696e 6573 732e 6661 6365 626f 6f6b 2e63 6f6d 2f69 6e76 6974 6174 696f 6e2f 2c6d 2e64 6961 7a73 6570 7461 4067 6d61 696c 2e63 6f6d 2c67 5950 7a4b 5068 7538 7038 6668 6774 470a 6465 7665 6c6f 7065 7273 2e66 6163 6562 6f6f 6b2e 636f 6d2c 6874 7470 733a 2f2f 6465 7665 6c6f 7065 7273 2e66 6163 6562 6f6f 6b2e 636f 6d2f 6170 7073 2f2c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 6759 447a 4b50 6875 3870 3866 6867 7447 0a77 6562 2e66 6163 6562 6f6f 6b2e 636f 6d2c 6874 7470 733a 2f2f 7765 622e 6661 6365 626f 6f6b 2e63 6f6d 2f2c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 6759 537a 4b50 6875 3870 3866 6867 7447 0a67 6974 6875 622e 636f 6d2c 6874 7470 733a 2f2f 6769 7468 7562 2e63 6f6d 2f6c 6f67 696e 2c6d 2e64 6961 7a73 6570 7461 4067 6d61 696c 2e63 6f6d 2c37 6d54 4168 5967 7259 6b66 4d32 6d33 4b0a 6d79 6163 636f 756e 742e 676f 6f67 6c65 2e63 6f6d 2c68 7474 7073 3a2f 2f6d 7961 6363 6f75 6e74 2e67 6f6f 676c 652e 636f 6d2f 7369 676e 696e 6f70 7469 6f6e 732f 7061 7373 776f 7264 2c6d 2e64 6961 7a73 6570 7461 4067 6d61 696c 2e63 6f6d 2c4c 334a 6339 507a 4b77 6268 697a 4848 590a 6d79 2e69 6463 6c6f 7564 686f 7374 2e63 6f6d 2c68 7474 7073 3a2f 2f6d 792e 6964 636c 6f75 6468 6f73 742e 636f 6d2f 636c 6965 6e74 6172 6561 2e70 6870 2c6d 2e64 6961 7a73 6570 7461 4067 6d61 696c 2e63 6f6d 2c45 3741 4a4e 3975 5773 444a 426a 6271 590a 6974 656d 6b75 2e63 6f6d 2c68 7474 7073 3a2f 2f69 7465 6d6b 752e 636f 6d2f 6461 6674 6172 2c6d 2e64 6961 7a73 6570 7461 4067 6d61 696c 2e63 6f6d 2c38 5845 356d 7246 4d72 5275 6d33 4156 510a 6c6f 6769 6e2e 6c69 7665 2e63 6f6d 2c68 7474 7073 3a2f 2f6c 6f67 696e 2e6c 6976 652e 636f 6d2f 6c6f 6769 6e2e 7372 662c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 384c 5971 6644 4c62 506e 3672 7462 5a6a 0a6e 6865 6e74 6169 2e6e 6574 2c68 7474 7073 3a2f 2f6e 6865 6e74 6169 2e6e 6574 2f75 7365 7273 2f31 3532 3836 3932 2f72 6570 6c61 792d 6e68 656e 7461 692f 6564 6974 2c72 6570 6c61 792e 6e68 656e 7461 692c 4742 417a 5464 596d 4c6a 5439 584c 4445 0a77 7777 2e70 6179 7061 6c2e 636f 6d2c 6874 7470 733a 2f2f 7777 772e 7061 7970 616c 2e63 6f6d 2f77 656c 636f 6d65 2f73 6967 6e75 702f 2c64 6969 617a 7365 7074 6161 4079 6168 6f6f 2e63 6f6d 2c51 4d59 5a50 437a 5275 7535 4c50 4e71 380a 706f 696e 7462 6c61 6e6b 2e69 642c 6874 7470 733a 2f2f 706f 696e 7462 6c61 6e6b 2e69 642f 6c6f 6769 6e2f 666f 726d 2c64 6169 7269 3132 3334 3536 3738 3930 0a77 7777 2e70 6f72 6e68 7562 2e63 6f6d 2c68 7474 7073 3a2f 2f77 7777 2e70 6f72 6e68 7562 2e63 6f6d 2f75 7365 722f 7365 6375 7269 7479 2c44 6961 7a53 6570 7461 2c36 4244 5476 6239 6a44 556a 5279 5a37 380a 6f73 752e 7070 792e 7368 2c68 7474 7073 3a2f 2f6f 7375 2e70 7079 2e73 682f 686f 6d65 2f61 6363 6f75 6e74 2f65 6469 742c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 6847 5232 3747 4761 6465 6579 776a 4465 0a72 7562 7967 656d 732e 6f72 672c 6874 7470 733a 2f2f 7275 6279 6765 6d73 2e6f 7267 2f73 6967 6e5f 7570 2c64 6961 7a73 6570 7461 2c33 6235 6d54 6542 7439 3264 4757 7a37 700a 7365 6b6f 6c61 686b 6f64 696e 672e 636f 6d2c 6874 7470 733a 2f2f 7365 6b6f 6c61 686b 6f64 696e 672e 636f 6d2f 7061 7373 776f 7264 2f72 6573 6574 2f78 4372 6151 5564 3332 7345 784b 3242 4c66 4a49 6d72 6d4f 6451 7538 4365 722f 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 4257 3561 5842 4e63 3776 5779 374c 7932 0a73 6f75 6e64 636c 6f75 642e 636f 6d2c 6874 7470 733a 2f2f 736f 756e 6463 6c6f 7564 2e63 6f6d 2f2c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 3564 5647 634d 6767 6833 3844 6833 5932 0a6d 792e 7465 6c6b 6f6d 7365 6c2e 636f 6d2c 6874 7470 733a 2f2f 6d79 2e74 656c 6b6f 6d73 656c 2e63 6f6d 2f61 7070 2f6d 792d 7072 6f66 696c 652c 6d2e 6469 617a 7365 7074 6140 676d 6169 6c2e 636f 6d2c 4832 3379 3337 6d38 6562 5a5a 6661 6252 0a77 7777 2e75 6e69 7069 6e2e 636f 6d2c 6874 7470 733a 2f2f 7777 772e 756e 6970 696e 2e63 6f6d 2f73 6563 7572 6974 795f 6b65 792c 2c47 4e38 7557 7855 6567 3237 614c 4267 370a 776f 7264 7072 6573 732e 636f 6d2c 6874 7470 733a 2f2f 776f 7264 7072 6573 732e 636f 6d2f 6c6f 672d 696e 2c6d 2e64 6961 7a73 6570 7461 4067 6d61 696c 2e63 6f6d 2c77 5247 456a 2435 6251 3832 5155 356b 5a48 2326 6155 0a6c 6f67 696e 2e79 6168 6f6f 2e63 6f6d 2c68 7474 7073 3a2f 2f6c 6f67 696e 2e79 6168 6f6f 2e63 6f6d 2f61 6363 6f75 6e74 2f63 6861 6c6c 656e 6765 2f70 6173 7377 6f72 642c 6469 6961 7a73 6570 7461 6140 7961 686f 6f2e 636f 6d2c 5a50 5447 5558 7537 5643 3244 797a 4c72 0a
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: diazsepta.github.io
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- diazsepta
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.1.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jekyll-sitemap
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.2.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.2.0
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: bundler
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -102,7 +116,29 @@ extensions: []
|
|
102
116
|
extra_rdoc_files: []
|
103
117
|
files:
|
104
118
|
- LICENSE.txt
|
105
|
-
|
119
|
+
- README.md
|
120
|
+
- _includes/footer.html
|
121
|
+
- _includes/head.html
|
122
|
+
- _includes/header.html
|
123
|
+
- _layouts/default.html
|
124
|
+
- _layouts/home.html
|
125
|
+
- _layouts/page.html
|
126
|
+
- _layouts/post.html
|
127
|
+
- _sass/diazsepta/_base.scss
|
128
|
+
- _sass/diazsepta/_layout.scss
|
129
|
+
- _sass/diazsepta/_syntax-highlighting.scss
|
130
|
+
- _sass/master.scss
|
131
|
+
- assets/css/Style.scss
|
132
|
+
- assets/data/chrome-passwords.txt
|
133
|
+
- assets/fonts/MesloLG_v1.2.1/About Meslo LG v1.2.1.pdf
|
134
|
+
- assets/fonts/MesloLG_v1.2.1/MesloLGS-bold-webfont.woff2
|
135
|
+
- assets/fonts/MesloLG_v1.2.1/MesloLGS-regular-webfont.woff2
|
136
|
+
- assets/img/curriculum.png
|
137
|
+
- assets/img/opengraph.jpg
|
138
|
+
- assets/img/posts/thumb/2019-03-30-welcome-to-jekyll.md.jpg
|
139
|
+
- assets/img/snapshot.jpg
|
140
|
+
- assets/img/untitled.png
|
141
|
+
homepage: https://rubygems.org/gems/diazsepta.github.io
|
106
142
|
licenses:
|
107
143
|
- MIT
|
108
144
|
metadata: {}
|