crane-theme 0.1.1 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2333f8e19f4a8b8d4d0812348109cbfd69ff0f52af6a7aae1eda6cf8d3c6a3bd
4
- data.tar.gz: 69022070531bd7d24f62d1d83126e87c6b7c95512b98fdc29c5674ca2cac4cf9
3
+ metadata.gz: 3c548db22a71138b6074d92c3b8a670a327b3288703748c00686c2dd69d55935
4
+ data.tar.gz: 447bbb4193853f0294835f77c1fddc29422ed85fb3c6fc0f8a4113d53311f6ff
5
5
  SHA512:
6
- metadata.gz: 0c1bf400533453a6ccaa275247665329e3b09b3b45dd0b97dac6b6e208dd967cb1d4bf7b80a6600c6141de3f6142f44a592eb0e7575a8aec9db6102879cb734d
7
- data.tar.gz: 229b90f1f01fb1c2579b13bad5930765b3609829b715f1ac3eb3bc03218e35dc8086275c691205f97df732cec1bee86931e8fdd150e7c7c2ae42d115f7527649
6
+ metadata.gz: d81c9c60258504c69fd896ad2963e40c894d10a6057ebbefa8b7f428594e982808c46678af95b87c456c2a7b09bef2336215eaf5bc4cede10b5548abd1eda3d1
7
+ data.tar.gz: 06ff314b3920b0b62dd002899309d4a4e17893aa86c00d8da285d3effc6b8ededae06bae369ce1b2222d75eb58f41e93268358784a8fd8874aec8cee7d7d81b2
data/README.md CHANGED
@@ -4,14 +4,19 @@ This is a Jekyll theme for my personal website. You can use or fork it if you'd
4
4
 
5
5
 
6
6
  ## Installation
7
+ ### GitHub Pages
8
+ 1. add [jekyll-remote-theme](https://github.com/benbalter/jekyll-remote-theme)
9
+ 2. add `remote_theme: "garzaa/crane-theme"` to your `_config.yml`
10
+ 3. follow steps below
7
11
 
12
+ ### Other
8
13
  Add this line to your Jekyll site's `Gemfile`:
9
14
 
10
15
  ```ruby
11
16
  gem "crane-theme"
12
17
  ```
13
18
 
14
- And add this line to your Jekyll site's `_config.yml`:
19
+ And add this line to your Jekyll site's `_config.yml` (if not using GitHub Pages):
15
20
 
16
21
  ```yaml
17
22
  theme: crane-theme
@@ -29,8 +34,8 @@ Or install it yourself as:
29
34
 
30
35
  This theme supports an archive and a home page link. They'll be populated automatically if supplied. Just add these to your `_config.yml`:
31
36
  ```yaml
32
- archive_page: index
33
- home_page: index
37
+ archive_page: /archive
38
+ home_page: /index
34
39
  ```
35
40
 
36
41
  ## Contributing
data/_config.yml ADDED
@@ -0,0 +1,14 @@
1
+ markdown: kramdown
2
+ highlighter: rouge
3
+ show_excerpts: true
4
+ title: 7crane | blog
5
+ author: Adrian Garza
6
+ kramdown:
7
+ syntax_highlighter: rouge
8
+ toc_levels: "2,3"
9
+
10
+ plugins:
11
+ - jekyll-seo-tag
12
+
13
+ archive_page: /index
14
+ home_page: /index
@@ -0,0 +1,30 @@
1
+ <footer class="site-footer h-card">
2
+ <data class="u-url" href="{{ "/" | relative_url }}"></data>
3
+
4
+ <div class="wrapper">
5
+
6
+ <div class="footer-col-wrapper">
7
+ <div class="footer-col">
8
+ {%- if site.author %}
9
+ <ul class="contact-list">
10
+ {% if site.author.name -%}
11
+ <li class="p-name">{{ site.author.name | escape }}</li>
12
+ {% endif -%}
13
+ {% if site.author.email -%}
14
+ <li><a class="u-email" href="mailto:{{ site.author.email }}">{{ site.author.email }}</a></li>
15
+ {%- endif %}
16
+ </ul>
17
+ {%- endif %}
18
+ </div>
19
+ <div class="footer-col">
20
+ <p>{{ site.description | escape }}</p>
21
+ </div>
22
+ </div>
23
+
24
+ <div class="social-links">
25
+ {%- include social.html -%}
26
+ </div>
27
+
28
+ </div>
29
+
30
+ </footer>
@@ -0,0 +1,20 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ <title>{{ site.title }}</title>
6
+ <link rel="preconnect" href="https://fonts.googleapis.com">
7
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8
+ <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Edu+VIC+WA+NT+Beginner&family=Fira+Mono&family=Fira+Sans:wght@400;500;800&display=swap" rel="stylesheet">
9
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
10
+ <link rel="stylesheet" href="{{ "/assets/css/code.css" | relative_url }}">
11
+ {% if page.usemathjax %}
12
+ <!-- for mathjax support -->
13
+ <script type="text/x-mathjax-config">
14
+ MathJax.Hub.Config({
15
+ TeX: { equationNumbers: { autoNumber: "AMS" } }
16
+ });
17
+ </script>
18
+ <script type="text/javascript" async src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
19
+ {% endif %}
20
+ </head>
@@ -0,0 +1,15 @@
1
+ <header class="site-header">
2
+
3
+ <div class="header-links">
4
+ {%- assign default_paths = site.pages | map: "path" -%}
5
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
6
+ {%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
7
+ {% if site.home_page %}
8
+ <a class="home-link" href="{{ site.home_page | relative_url }}">home</a>
9
+ {% endif %}
10
+ &nbsp;
11
+ {% if site.archive_page %}
12
+ <a class="archive-link" href="{{ site.archive_page | relative_url }}">all posts</a>
13
+ {% endif %}
14
+ </div>
15
+ </header>
@@ -0,0 +1,21 @@
1
+ {%- assign social = site.minima.social_links -%}
2
+
3
+ <ul class="social-media-list">
4
+ {%- for glb in social.gitlab -%}{%- if glb.username and glb.instance -%}<li><a rel="me" href="https://{{ glb.instance | cgi_escape | escape}}/{{glb.username}}" target="_blank" title="{{ glb.username | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#gitlab' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
5
+ {%- if social.dribbble -%}<li><a rel="me" href="https://dribbble.com/{{ social.dribbble | cgi_escape | escape }}" target="_blank" title="{{ social.dribbble | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#dribbble' | relative_url }}"></use></svg></a></li>{%- endif -%}
6
+ {%- if social.facebook -%}<li><a rel="me" href="https://www.facebook.com/{{ social.facebook | cgi_escape | escape }}" target="_blank" title="{{ social.facebook | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#facebook' | relative_url }}"></use></svg></a></li>{%- endif -%}
7
+ {%- if social.flickr -%}<li><a rel="me" href="https://www.flickr.com/photos/{{ social.flickr | cgi_escape | escape }}" target="_blank" title="{{ social.flickr | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#flickr' | relative_url }}"></use></svg></a></li>{%- endif -%}
8
+ {%- if social.github -%}<li><a rel="me" href="https://github.com/{{ social.github | cgi_escape | escape }}" target="_blank" title="{{ social.github | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg></a></li>{%- endif -%}
9
+ {%- if social.stackoverflow -%}<li><a rel="me" href="https://stackoverflow.com/users/{{ social.stackoverflow | cgi_escape | escape }}" target="_blank" title="{{ social.stackoverflow | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#stackoverflow' | relative_url }}"></use></svg></a></li>{%- endif -%}
10
+ {%- if social.instagram -%}<li><a rel="me" href="https://www.instagram.com/{{ social.instagram | cgi_escape | escape }}" target="_blank" title="{{ social.instagram | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#instagram' | relative_url }}"></use></svg></a></li>{%- endif -%}
11
+ {%- if social.linkedin -%}<li><a rel="me" href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape | escape }}" target="_blank" title="{{ social.linkedin | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg></a></li>{%- endif -%}
12
+ {%- if social.pinterest -%}<li><a rel="me" href="https://www.pinterest.com/{{ social.pinterest | cgi_escape | escape }}" target="_blank" title="{{ social.pinterest | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#pinterest' | relative_url }}"></use></svg></a></li>{%- endif -%}
13
+ {%- for mst in social.mastodon -%}{%- if mst.username and mst.instance -%}<li><a rel="me" href="https://{{ mst.instance | cgi_escape | escape}}/@{{mst.username}}" target="_blank" title="{{ mst.username | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#mastodon' | relative_url }}"></use></svg></a></li>{%- endif -%}{%- endfor -%}
14
+ {%- if social.twitter -%}<li><a rel="me" href="https://twitter.com/{{ social.twitter | cgi_escape | escape }}" target="_blank" title="{{ social.twitter | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#twitter' | relative_url }}"></use></svg></a></li>{%- endif -%}
15
+ {%- if social.youtube -%}<li><a rel="me" href="https://www.youtube.com/{{ social.youtube | cgi_escape | escape }}" target="_blank" title="{{ social.youtube | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
16
+ {%- if social.youtube_channel -%}<li><a rel="me" href="https://www.youtube.com/channel/{{ social.youtube_channel | cgi_escape | escape }}" target="_blank" title="{{ social.youtube_channel_name | escape | default: 'YouTube' }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg></a></li>{%- endif -%}
17
+ {%- if social.telegram -%}<li><a rel="me" href="https://t.me/{{ social.telegram | cgi_escape | escape }}" target="_blank" title="{{ social.telegram | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#telegram' | relative_url }}"></use></svg></a></li>{%- endif -%}
18
+ {%- if social.keybase -%}<li><a rel="me" href="https://keybase.io/{{ social.keybase | cgi_escape | escape }}" target="_blank" title="{{ social.keybase | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#keybase' | relative_url }}"></use></svg></a></li>{%- endif -%}
19
+ {%- if social.microdotblog -%}<li><a rel="me" href="https://micro.blog/{{ social.microdotblog | cgi_escape | escape }}" target="_blank" title="{{ social.microdotblog | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#microdotblog' | relative_url }}"></use></svg></a></li>{%- endif -%}
20
+ {%- if social.devto -%}<li><a href="https://dev.to/{{ social.devto | cgi_escape | escape }}" target="_blank" title="{{ social.devto | escape }}"><svg class="svg-icon grey"><use xlink:href="{{ '/assets/minima-social-icons.svg#devto' | relative_url }}"></use></svg></a></li>{%- endif -%}
21
+ </ul>
@@ -0,0 +1,73 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+ <main class="page-content" aria-label="Content">
8
+ <div class="post-container">
9
+ <div class="home">
10
+ {%- if page.title -%}
11
+ <h1 class="page-heading">{{ page.title }}</h1>
12
+ {%- endif -%}
13
+
14
+ {{ content }}
15
+
16
+
17
+ {% if site.paginate %}
18
+ {% assign posts = paginator.posts %}
19
+ {% else %}
20
+ {% assign posts = site.posts %}
21
+ {% endif %}
22
+
23
+
24
+ {%- if posts.size > 0 -%}
25
+ {%- if page.list_title -%}
26
+ <h2 class="post-list-heading">{{ page.list_title }}</h2>
27
+ {%- endif -%}
28
+ <ul class="post-list">
29
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
30
+ {%- for post in posts -%}
31
+ <li>
32
+ <h3>
33
+ <a class="post-link" href="{{ post.url | relative_url }}">
34
+ {{ post.title | escape }}
35
+ </a>
36
+ </h3>
37
+ <span class="post-meta"><em>{{ post.date | date: date_format }}</em></span>
38
+ {%- if site.show_excerpts -%}
39
+ {{ post.excerpt }}
40
+ {%- endif -%}
41
+ </li>
42
+ {%- endfor -%}
43
+ </ul>
44
+
45
+ {% if site.paginate %}
46
+ <div class="pager">
47
+ <ul class="pagination">
48
+ {%- if paginator.previous_page %}
49
+ <li><a href="{{ paginator.previous_page_path | relative_url }}" class="previous-page">{{ paginator.previous_page }}</a></li>
50
+ {%- else %}
51
+ <li><div class="pager-edge">•</div></li>
52
+ {%- endif %}
53
+ <li><div class="current-page">{{ paginator.page }}</div></li>
54
+ {%- if paginator.next_page %}
55
+ <li><a href="{{ paginator.next_page_path | relative_url }}" class="next-page">{{ paginator.next_page }}</a></li>
56
+ {%- else %}
57
+ <li><div class="pager-edge">•</div></li>
58
+ {%- endif %}
59
+ </ul>
60
+ </div>
61
+ {%- endif %}
62
+
63
+ {%- endif -%}
64
+
65
+ </div>
66
+ </div>
67
+ </main>
68
+
69
+ {%- include footer.html -%}
70
+
71
+ </body>
72
+
73
+ </html>
data/_layouts/post.html CHANGED
@@ -31,9 +31,18 @@ layout: default
31
31
  {{ content }}
32
32
  </div>
33
33
 
34
- {%- if site.disqus.shortname -%}
35
- {%- include disqus_comments.html -%}
36
- {%- endif -%}
34
+ <div class="page-navigation">
35
+ <div class="link-container">
36
+ {% if page.previous.url %}
37
+ <a class="prev" href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a>
38
+ {% endif %}
39
+ </div>
40
+ <div class="link-container">
41
+ {% if page.next.url %}
42
+ <a class="next" href="{{page.next.url}}">{{page.next.title}} &raquo;</a>
43
+ {% endif %}
44
+ </div>
45
+ </div>
37
46
 
38
47
  <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
39
48
  </article>
@@ -0,0 +1,80 @@
1
+ .highlight table td { padding: 5px; }
2
+ .highlight table pre { margin: 0; }
3
+ .highlight, .highlight .w {
4
+ color: #303030;
5
+ }
6
+ .highlight .err {
7
+ color: #151515;
8
+ background-color: #ac4142;
9
+ }
10
+ .highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cpf, .highlight .c1, .highlight .cs {
11
+ color: #505050;
12
+ }
13
+ .highlight .cp {
14
+ color: #f4bf75;
15
+ }
16
+ .highlight .nt {
17
+ color: #f4bf75;
18
+ }
19
+ .highlight .o, .highlight .ow {
20
+ color: #d0d0d0;
21
+ }
22
+ .highlight .p, .highlight .pi {
23
+ color: #d0d0d0;
24
+ }
25
+ .highlight .gi {
26
+ color: #90a959;
27
+ }
28
+ .highlight .gd {
29
+ color: #ac4142;
30
+ }
31
+ .highlight .gh {
32
+ color: #6a9fb5;
33
+ background-color: #151515;
34
+ font-weight: bold;
35
+ }
36
+ .highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
37
+ color: #aa759f;
38
+ }
39
+ .highlight .kc {
40
+ color: #d28445;
41
+ }
42
+ .highlight .kt {
43
+ color: #d28445;
44
+ }
45
+ .highlight .kd {
46
+ color: #d28445;
47
+ }
48
+ .highlight .s, .highlight .sb, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
49
+ color: #90a959;
50
+ }
51
+ .highlight .sa {
52
+ color: #aa759f;
53
+ }
54
+ .highlight .sr {
55
+ color: #75b5aa;
56
+ }
57
+ .highlight .si {
58
+ color: #8f5536;
59
+ }
60
+ .highlight .se {
61
+ color: #8f5536;
62
+ }
63
+ .highlight .nn {
64
+ color: #f4bf75;
65
+ }
66
+ .highlight .nc {
67
+ color: #f4bf75;
68
+ }
69
+ .highlight .no {
70
+ color: #f4bf75;
71
+ }
72
+ .highlight .na {
73
+ color: #6a9fb5;
74
+ }
75
+ .highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
76
+ color: #90a959;
77
+ }
78
+ .highlight .ss {
79
+ color: #90a959;
80
+ }
@@ -0,0 +1,207 @@
1
+ * {
2
+ font-family: 'Fira Sans', sans-serif;
3
+ }
4
+
5
+ :root {
6
+ --main-bg: #ffffff;
7
+ --main-color: #14213d;
8
+ --lighter-color: #747578;
9
+ --main-highlight: #fca311;
10
+ --secondary-highlight: #0075C4;
11
+ --code-bg: white;
12
+ --code-border: #e5e5e5;
13
+ }
14
+
15
+ html, body {
16
+ padding: 0;
17
+ margin: 0;
18
+ background-color: var(--main-bg);
19
+ color: var(--main-color);
20
+ line-height: 1.5;
21
+ }
22
+
23
+ .post-container {
24
+ display: flex;
25
+ justify-content: center;
26
+ width: 100%;
27
+ }
28
+
29
+ .post, .home {
30
+ width: 100%;
31
+ max-width: 800px;
32
+ }
33
+
34
+ @media only screen and (max-width: 820px) {
35
+ .post-content, .post, .highlighter-rouge {
36
+ width: 100%;
37
+ }
38
+
39
+ .page-content {
40
+ padding: 0pt 10pt;
41
+ }
42
+
43
+ .post-container {
44
+ width: calc(100% - 16pt);
45
+ }
46
+ }
47
+
48
+ @media (max-width: 1600px) {
49
+ .site-header {
50
+ position: inherit !important;
51
+ margin-top: 20pt;
52
+ }
53
+ }
54
+
55
+ @media (min-width: 1600px) {
56
+ #markdown-toc {
57
+ position: sticky;
58
+ top: 20pt;
59
+ height: 0;
60
+ transform: translateX(calc(-100% - 40pt));
61
+ background: var(--main-bg);
62
+ z-index: 1;
63
+ margin: 0;
64
+ width: fit-content;
65
+ }
66
+ }
67
+
68
+ .highlighter-rouge {
69
+ background-color: var(--code-bg);
70
+ padding: 1pt 5pt;
71
+ border-radius: 5px;
72
+ border: 1px solid var(--code-border);
73
+ }
74
+
75
+ .highlighter-rouge code * {
76
+ white-space: nowrap;
77
+ }
78
+
79
+ .highlighter-rouge pre {
80
+ overflow-x: auto;
81
+ }
82
+
83
+ .highlighter-rouge pre code {
84
+ white-space: pre;
85
+ }
86
+
87
+ hr {
88
+ margin: 30pt 0pt;
89
+ border: 1px solid var(--code-border);
90
+ border-radius: 1px;
91
+ }
92
+
93
+ pre, code, code * {
94
+ font-size: 10pt;
95
+ font-family: 'Fira Code', monospace;
96
+ tab-size: 4;
97
+ }
98
+
99
+ code.language-plaintext {
100
+ padding: 1px 5px !important;
101
+ font-size: inherit;
102
+ }
103
+
104
+ h1, h2, h3 {
105
+ font-family: 'Bebas Neue', sans-serif;
106
+ font-weight: 800;
107
+ margin-bottom: 0;
108
+ }
109
+
110
+ ol, ul, p {
111
+ margin-top: 5pt;
112
+ margin-bottom: 2pt;
113
+ }
114
+
115
+ img {
116
+ max-width: 100%;
117
+ vertical-align: middle;
118
+ border-radius: 5px;
119
+ }
120
+
121
+ h1 {
122
+ font-size: 50pt;
123
+ background-color: var(--main-color);
124
+ color: var(--main-bg);
125
+ padding: 0pt 20pt;
126
+ margin-top: 20pt;
127
+ border-radius: 5px;
128
+ }
129
+
130
+ h2 {
131
+ font-size: 30pt;
132
+ color: var(--main-highlight);
133
+ text-decoration: underline;
134
+ }
135
+
136
+ h3 {
137
+ font-size: 20pt;
138
+ margin-top: 16pt;
139
+ }
140
+
141
+ h4 {
142
+ font-size: 18pt;
143
+ font-family: 'Edu VIC WA NT Beginner', cursive;
144
+ color: var(--main-highlight);
145
+ margin-bottom: 0;
146
+ margin-top: 10pt;
147
+ }
148
+
149
+ h5, h5 * {
150
+ font-size: inherit;
151
+ color: var(--lighter-color);
152
+ font-family: 'Edu VIC WA NT Beginner', cursive;
153
+ }
154
+
155
+ .dt-published {
156
+ font-style: italic;
157
+ }
158
+
159
+ a, a:visited {
160
+ text-decoration: underline;
161
+ color: inherit;
162
+ }
163
+
164
+ a:hover {
165
+ text-decoration: underline;
166
+ }
167
+
168
+ blockquote {
169
+ border-left: 4px solid var(--code-border);
170
+ margin: 3pt 0;
171
+ padding-left: 10pt;
172
+ color: var(--lighter-color);
173
+ }
174
+
175
+ .post-list li {
176
+ list-style: none;
177
+ }
178
+
179
+ .post-list {
180
+ padding: 0;
181
+ }
182
+
183
+ .site-header {
184
+ position: sticky;
185
+ top: 20pt;
186
+ z-index: 1;
187
+ }
188
+
189
+ .header-links {
190
+ margin-left: 20pt;
191
+ }
192
+
193
+ .page-navigation {
194
+ display: flex;
195
+ height: 10rem;
196
+ align-items: center;
197
+ margin-top: 10rem;
198
+ justify-content: space-between;
199
+ flex-direction: row;
200
+ }
201
+
202
+ .page-navigation .link-container {
203
+ height: 100%;
204
+ width: 50%;
205
+ text-align: center;
206
+ color: var(--lighter-color);
207
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crane-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Garza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-04 00:00:00.000000000 Z
11
+ date: 2022-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -33,9 +33,17 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - LICENSE.txt
35
35
  - README.md
36
+ - _config.yml
37
+ - _includes/footer.html
38
+ - _includes/head.html
39
+ - _includes/header.html
40
+ - _includes/social.html
41
+ - _layouts/archive.html
36
42
  - _layouts/default.html
37
43
  - _layouts/page.html
38
44
  - _layouts/post.html
45
+ - assets/css/code.css
46
+ - assets/css/style.css
39
47
  homepage: https://github.com/garzaa/crane-theme
40
48
  licenses:
41
49
  - MIT