coppermind 3.2 → 3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +48 -4
- data/_includes/footer.html +20 -2
- data/_sass/monophase/_layout.scss +18 -2
- data/assets/pins/hundredrabbits.gif +0 -0
- data/assets/pins/kitchen.gif +0 -0
- data/assets/pins/landchad.gif +0 -0
- data/assets/pins/larbs.gif +0 -0
- data/assets/pins/luke.gif +0 -0
- data/assets/pins/xxiivv.gif +0 -0
- metadata +7 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 683e638992784d15f1ea672a4abf2422cc14527ef1fe84eed3d9c30625555149
|
4
|
+
data.tar.gz: 7c61912367a4ec02f3aec430cdd661f0c9cf124b1344e93e7ad44ea5e983ce42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e0ff2e506cd23276d7fd43ac7133ba8c345b7741d781371b06dd067964e71af570f6bf6248cb09f7211c29ea85607eb0c72d7cd3d35eb7b8365ea7a4e137604
|
7
|
+
data.tar.gz: f5792db063f2a433e516da3adcae07c83210e321e20ff713cabded983c69fa410e19badac2b39842af3c0b2827288385ee8856f9f0c9bf6e5ba25b145daf3722
|
data/README.md
CHANGED
@@ -11,7 +11,7 @@ The modern web is bloated and disorganised. Pages load slowly and require large,
|
|
11
11
|
This project:
|
12
12
|
|
13
13
|
- Is built as a theme for [Jekyll](https://jekyllrb.com)
|
14
|
-
- Was
|
14
|
+
- Was built on the now abandoned [Monophase](https://github.com/whk-io/monophase), but adds several features, updates, and fixes.
|
15
15
|
|
16
16
|
## Installation and Initial Setup
|
17
17
|
|
@@ -59,10 +59,16 @@ To set up the navigation bar you need to specify titles and URLs in the file `_d
|
|
59
59
|
```yml
|
60
60
|
- title: About
|
61
61
|
url: /about/
|
62
|
-
|
63
|
-
|
62
|
+
|
63
|
+
- title: Years
|
64
|
+
url: /years/
|
65
|
+
|
64
66
|
- title: Categories
|
65
67
|
url: /categories/
|
68
|
+
|
69
|
+
- title: Tags
|
70
|
+
url: /tags/
|
71
|
+
|
66
72
|
```
|
67
73
|
|
68
74
|
You will also need to add markdown files corresponding to these links in the site's root directory:
|
@@ -112,6 +118,44 @@ permalink: /years/
|
|
112
118
|
---
|
113
119
|
```
|
114
120
|
|
121
|
+
### The footbar pins
|
122
|
+
To include pins in the footer, you need to specify titles, image names, and URLs in the file `_data/pins.yml` as shown in the example below.
|
123
|
+
|
124
|
+
```yml
|
125
|
+
- title: Larbs
|
126
|
+
url: https://larbs.xyz/
|
127
|
+
image: larbs
|
128
|
+
|
129
|
+
- title: XXIIVV
|
130
|
+
url: https://wiki.xxiivv.com/site/home.html
|
131
|
+
image: xxiivv
|
132
|
+
|
133
|
+
- title: Luke Smith
|
134
|
+
url: https://lukesmith.xyz/index
|
135
|
+
image: luke
|
136
|
+
|
137
|
+
- title: Hundred Rabbits
|
138
|
+
url: https://100r.co/site/home.html
|
139
|
+
image: hundredrabbits
|
140
|
+
|
141
|
+
- title: Landchad
|
142
|
+
url: https://landchad.net/
|
143
|
+
image: landchad
|
144
|
+
|
145
|
+
- title: Kitchen
|
146
|
+
url: https://grimgrains.com/site/home.html
|
147
|
+
image: kitchen
|
148
|
+
```
|
149
|
+
|
150
|
+
This configuration corresponds to the following fiiles:
|
151
|
+
1. `assets/pins/larbs.gif`
|
152
|
+
2. `assets/pins/xxiivv.gif`
|
153
|
+
3. `assets/pins/luke.gif`
|
154
|
+
4. `assets/pins/hundredrabbits.gif`
|
155
|
+
5. `assets/pins/landchad.gif`
|
156
|
+
6. `assets/pins/kitchen.gif`
|
157
|
+
|
158
|
+
|
115
159
|
## Customisation
|
116
160
|
|
117
161
|
### Config.yml options
|
@@ -205,4 +249,4 @@ When a new gem version is released, only the files in specified in the gemspec r
|
|
205
249
|
|
206
250
|
## License
|
207
251
|
|
208
|
-
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
252
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/_includes/footer.html
CHANGED
@@ -1,5 +1,23 @@
|
|
1
|
+
|
1
2
|
<footer class="footer">
|
2
|
-
|
3
|
+
|
4
|
+
<div class="pinlist">
|
5
|
+
{% if site.data.pins %}
|
6
|
+
{% for item in site.data.pins %}
|
7
|
+
<a href="{{ item.url }}" class="pin">
|
8
|
+
<img src="/assets/pins/{{ item.image }}.gif">
|
9
|
+
</a>
|
10
|
+
{% endfor %}
|
11
|
+
{% endif %}
|
12
|
+
</div>
|
13
|
+
<br>
|
14
|
+
|
15
|
+
<!-- <p>The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. </p> -->
|
16
|
+
|
17
|
+
|
18
|
+
<div class="attribution">
|
19
|
+
|
20
|
+
<div class="attribution-column">
|
3
21
|
<p>
|
4
22
|
<small>
|
5
23
|
©
|
@@ -24,7 +42,7 @@
|
|
24
42
|
</p>
|
25
43
|
</div>
|
26
44
|
{% if site.data.social %}
|
27
|
-
<div class="
|
45
|
+
<div class="attribution-column">
|
28
46
|
<ul class="social-icons">
|
29
47
|
{% for social in site.data.social %}
|
30
48
|
<li class="social-icon-item">
|
@@ -269,6 +269,11 @@ a.pagination-item:hover {
|
|
269
269
|
}
|
270
270
|
}
|
271
271
|
|
272
|
+
.pin{
|
273
|
+
width: 88px;
|
274
|
+
padding-right: var(--spacer);
|
275
|
+
}
|
276
|
+
|
272
277
|
.social-icons {
|
273
278
|
list-style: none;
|
274
279
|
padding: 0;
|
@@ -281,10 +286,21 @@ a.pagination-item:hover {
|
|
281
286
|
}
|
282
287
|
|
283
288
|
@media screen and (min-width: $md-screen) {
|
284
|
-
.footer
|
289
|
+
// .footer{
|
290
|
+
// padding-left: var(--spacer-2);
|
291
|
+
// padding-right: var(--spacer-2);
|
292
|
+
// }
|
293
|
+
.attribution {
|
285
294
|
display: flex;
|
286
295
|
}
|
287
|
-
.
|
296
|
+
.pinlist{
|
297
|
+
display:flex;
|
298
|
+
// border:3px solid black;
|
299
|
+
flex-direction:row;
|
300
|
+
flex-wrap:wrap;
|
301
|
+
// justify-content: center;
|
302
|
+
}
|
303
|
+
.attribution-column {
|
288
304
|
width: 100%;
|
289
305
|
}
|
290
306
|
.social-icons {
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coppermind
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '3.
|
4
|
+
version: '3.3'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jesse Williamson
|
@@ -115,6 +115,12 @@ files:
|
|
115
115
|
- assets/monophase/styles.scss
|
116
116
|
- assets/normalize.css
|
117
117
|
- assets/open-color.css
|
118
|
+
- assets/pins/hundredrabbits.gif
|
119
|
+
- assets/pins/kitchen.gif
|
120
|
+
- assets/pins/landchad.gif
|
121
|
+
- assets/pins/larbs.gif
|
122
|
+
- assets/pins/luke.gif
|
123
|
+
- assets/pins/xxiivv.gif
|
118
124
|
homepage: https://github.com/zivhub/monophase
|
119
125
|
licenses:
|
120
126
|
- MIT
|