tessellate 0.1.9 → 0.1.11
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 +4 -4
- data/README.md +33 -5
- data/_config.yml +8 -0
- data/_data/navigation.yml +7 -52
- data/_includes/contact_form.html +2 -2
- data/_layouts/default.html +2 -2
- data/_layouts/page.html +10 -1
- data/_layouts/section_four.html +2 -1
- data/_layouts/section_one.html +1 -1
- data/_layouts/section_three.html +14 -5
- data/_layouts/section_two.html +2 -2
- data/_sass/tessellate.scss +16 -4
- data/assets/css/syntax.css +203 -0
- data/assets/favicon/android-chrome-192x192.png +0 -0
- data/assets/favicon/android-chrome-512x512.png +0 -0
- data/assets/favicon/apple-touch-icon.png +0 -0
- data/assets/favicon/favicon-16x16.png +0 -0
- data/assets/favicon/favicon-32x32.png +0 -0
- data/assets/favicon/favicon.ico +0 -0
- data/assets/favicon/site.webmanifest +1 -0
- data/assets/images/IMG_0001.jpg +0 -0
- data/assets/images/IMG_0001_cropped.jpg +0 -0
- data/assets/images/IMG_0002.jpg +0 -0
- data/assets/images/IMG_0002_cropped.jpg +0 -0
- data/assets/images/IMG_0003.jpg +0 -0
- data/assets/images/IMG_0003_cropped.jpg +0 -0
- data/assets/images/IMG_0004.jpg +0 -0
- data/assets/images/IMG_0004_cropped.jpg +0 -0
- data/assets/images/IMG_0005.jpg +0 -0
- data/assets/images/IMG_0005_cropped.jpg +0 -0
- data/assets/images/IMG_0006.jpg +0 -0
- data/assets/images/IMG_0006_cropped.jpg +0 -0
- data/assets/images/IMG_0007.jpg +0 -0
- data/assets/images/IMG_0007_banner.jpg +0 -0
- data/assets/images/IMG_0008.jpg +0 -0
- data/assets/images/IMG_0009.jpg +0 -0
- data/assets/images/IMG_0009_banner.jpg +0 -0
- data/assets/images/IMG_0010.jpg +0 -0
- metadata +28 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8539dfa77c58a30e2d2506003be44c0e8338533e63d2ad24d641cbec0772021
|
4
|
+
data.tar.gz: bab68b44046801f069a6df698a0bcd4564f942879f79012d5f0d2ea27dbdd1b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2026949e39a1739f31c12baa3cb71aadc9e8f4ca7f216743675048672fc7acfa743e31de8bc33b018aec9bc4f588d810fecfe2e961ac3f5ad9b04968aee75fdd
|
7
|
+
data.tar.gz: a073438d7b238aa8342399f2b694615b570d3773d66cb70b2a5b17ce2193b25e58c86c6aa4fabda79ad4991f0c5223905841694d98d1f4ae155e271ab1c3bf11
|
data/README.md
CHANGED
@@ -1,7 +1,29 @@
|
|
1
1
|
# tessellate
|
2
2
|
|
3
|
+
<p align="center">
|
4
|
+
<a href="https://github.com/PrestonHager/tessellate/actions/workflows/gem-push.yml">
|
5
|
+
<img
|
6
|
+
src="https://github.com/PrestonHager/tessellate/actions/workflows/gem-push.yml/badge.svg"
|
7
|
+
alt="Ruby Gem" />
|
8
|
+
</a>
|
9
|
+
<a href="https://rubygems.org/gems/tessellate">
|
10
|
+
<img src="http://img.shields.io/gem/v/tessellate.svg?style=flat-square"
|
11
|
+
alt="Gem Version" />
|
12
|
+
</a>
|
13
|
+
</p>
|
14
|
+
|
3
15
|
Tessellate theme based on [HTML5 UP's Tessellate template][0].
|
4
16
|
Aimed at sectioned content allowing for a wide range of layouts.
|
17
|
+
This theme is great for use with a one-page site or a multi-page site.
|
18
|
+
|
19
|
+
## Preview
|
20
|
+
|
21
|
+
<details>
|
22
|
+
<summary>See screenshot (very long image).</summary>
|
23
|
+
|
24
|
+

|
25
|
+
|
26
|
+
</details>
|
5
27
|
|
6
28
|
## Installation
|
7
29
|
|
@@ -27,9 +49,8 @@ Or install it yourself as:
|
|
27
49
|
|
28
50
|
## Usage
|
29
51
|
|
30
|
-
|
31
|
-
|
32
|
-
The basic layout is `page`, it takes a `header` and `cta` parameter.
|
52
|
+
The basic layout is `page`, it takes a `header` and `cta` parameter in the
|
53
|
+
frontmatter.
|
33
54
|
|
34
55
|
```yaml
|
35
56
|
---
|
@@ -83,8 +104,15 @@ Front matter goes here...
|
|
83
104
|
|
84
105
|
## Customization
|
85
106
|
|
86
|
-
|
87
|
-
|
107
|
+
You may change the syntax highlighting theme by overwriting the `syntax.css`
|
108
|
+
file in the `assets/css` directory. Either find a rouge theme online, or use
|
109
|
+
`rougify` to generate the css from a sublime theme file. The default theme is
|
110
|
+
`monokai`. Two command you may find useful are:
|
111
|
+
|
112
|
+
```sh
|
113
|
+
$ bundle exec rougify help style
|
114
|
+
$ bundle exec rougify style monokai > assets/css/syntax.css
|
115
|
+
```
|
88
116
|
|
89
117
|
## Contributing
|
90
118
|
|
data/_config.yml
CHANGED
data/_data/navigation.yml
CHANGED
@@ -2,60 +2,15 @@
|
|
2
2
|
url: "/"
|
3
3
|
side: left
|
4
4
|
|
5
|
-
- title:
|
6
|
-
url: "/
|
5
|
+
- title: Project
|
6
|
+
url: "/project/"
|
7
7
|
side: left
|
8
8
|
dropdown:
|
9
|
-
- title: "
|
10
|
-
url: "/about
|
11
|
-
- title: "
|
12
|
-
url: "/
|
9
|
+
- title: "About"
|
10
|
+
url: "/project/#about"
|
11
|
+
- title: "Documentation"
|
12
|
+
url: "/project/documentation/"
|
13
13
|
|
14
|
-
- title:
|
15
|
-
url: "/research/"
|
16
|
-
side: left
|
17
|
-
dropdown:
|
18
|
-
- title: "Task 1"
|
19
|
-
url: "/research/task-1/"
|
20
|
-
- title: "Task 2"
|
21
|
-
url: "/research/task-2/"
|
22
|
-
- title: "Task 3"
|
23
|
-
url: "/research/task-3/"
|
24
|
-
- title: "Task 4"
|
25
|
-
url: "/research/task-4/"
|
26
|
-
- title: "Task 5"
|
27
|
-
url: "/research/task-5/"
|
28
|
-
- title: "Task 6"
|
29
|
-
url: "/research/task-6/"
|
30
|
-
|
31
|
-
- title: "Education & Outreach"
|
32
|
-
url: "/education-outreach/"
|
33
|
-
side: left
|
34
|
-
|
35
|
-
- title: Resources
|
36
|
-
url: "/resources/"
|
37
|
-
side: left
|
38
|
-
dropdown:
|
39
|
-
- title: "Publications"
|
40
|
-
url: "/resources/publications/"
|
41
|
-
- title: "Code"
|
42
|
-
url: "/resources/code/"
|
43
|
-
- title: "Data"
|
44
|
-
url: "/resources/data/"
|
45
|
-
|
46
|
-
- title: "News & Events"
|
47
|
-
url: "/news-and-events/"
|
48
|
-
side: left
|
49
|
-
dropdown:
|
50
|
-
- title: "News"
|
51
|
-
url: "/news-and-events/news/"
|
52
|
-
- title: "Calendar"
|
53
|
-
url: "/calendar/"
|
54
|
-
|
55
|
-
- title: "Search"
|
56
|
-
url: "/search/"
|
57
|
-
side: right
|
58
|
-
|
59
|
-
- title: "Contact"
|
14
|
+
- title: Contact
|
60
15
|
url: "/contact/"
|
61
16
|
side: right
|
data/_includes/contact_form.html
CHANGED
@@ -14,8 +14,8 @@ To use this contact form use the following:
|
|
14
14
|
<section id="{{ section-id }}" class="main">
|
15
15
|
<header>
|
16
16
|
<div class="container">
|
17
|
-
<h2>{{ include.
|
18
|
-
<p>{{ include.
|
17
|
+
<h2>{{ include.title }}</h2>
|
18
|
+
<p>{{ include.body }}</p>
|
19
19
|
</div>
|
20
20
|
</header>
|
21
21
|
<div class="content style4 featured">
|
data/_layouts/default.html
CHANGED
@@ -12,11 +12,11 @@
|
|
12
12
|
</div>
|
13
13
|
</header>
|
14
14
|
{% endif %}
|
15
|
-
{% assign style =
|
15
|
+
{% assign style = style1 %}
|
16
16
|
{% if page.style %}
|
17
17
|
{% assign style = page.style %}
|
18
18
|
{% endif %}
|
19
|
-
<div class="content dark {{ style }} featured">
|
19
|
+
<div class="content dark {{ style }} featured default">
|
20
20
|
<div class="container">
|
21
21
|
{{ content }}
|
22
22
|
</div>
|
data/_layouts/page.html
CHANGED
@@ -10,9 +10,18 @@
|
|
10
10
|
<title>{{ title }}</title>
|
11
11
|
<meta charset="utf-8" />
|
12
12
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
13
|
+
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
|
14
|
+
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
|
15
|
+
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
|
16
|
+
<link rel="manifest" href="/assets/favicon/site.webmanifest">
|
13
17
|
<link rel="stylesheet" href="/assets/css/style.css" />
|
18
|
+
<link rel="stylesheet" href="/assets/css/syntax.css" />
|
14
19
|
</head>
|
15
|
-
<body
|
20
|
+
<body
|
21
|
+
class="is-preload"
|
22
|
+
{% if page.section-id %} id="{{ page.section-id }}"{% endif %}
|
23
|
+
{% if page.class %} class="{{ page.class }}"{% endif %}
|
24
|
+
>
|
16
25
|
{% if site.data.navigation %}
|
17
26
|
{% include navigation.html %}
|
18
27
|
{% endif %}
|
data/_layouts/section_four.html
CHANGED
@@ -22,7 +22,8 @@
|
|
22
22
|
{% if page.columns %}
|
23
23
|
{% assign column_width = 12 | divided_by: page.columns %}
|
24
24
|
{% endif %}
|
25
|
-
{% assign
|
25
|
+
{% assign columns = page.columns | default: 3 %}
|
26
|
+
{% assign content_split = page.content | paragraph_split: columns %}
|
26
27
|
{% for body in content_split %}
|
27
28
|
<div class="col-{{ column_width }} col-12-narrow">
|
28
29
|
{{ body | markdownify }}
|
data/_layouts/section_one.html
CHANGED
data/_layouts/section_three.html
CHANGED
@@ -18,6 +18,14 @@
|
|
18
18
|
<span class="image featured"><img src="{{ page.image }}" alt="" /></span>
|
19
19
|
{% endif %}
|
20
20
|
<div class="row">
|
21
|
+
{% assign content_paragraphs = page.content | paragraph_split: 3 %}
|
22
|
+
{% for paragraph in content_paragraphs %}
|
23
|
+
<div class="col-4 col-12-narrow">
|
24
|
+
{{ paragraph | markdownify }}
|
25
|
+
</div>
|
26
|
+
{% endfor %}
|
27
|
+
|
28
|
+
{% comment %}
|
21
29
|
{% assign content_body = page.content | split: " " %}
|
22
30
|
{% assign length = content_body | size %}
|
23
31
|
{% assign part_length = length | divided_by: 3 %}
|
@@ -30,12 +38,13 @@
|
|
30
38
|
</div>
|
31
39
|
<div class="col-4 col-12-narrow">
|
32
40
|
{{ content_body | slice: part_length_double, part_length | join: " " | markdownify }}
|
33
|
-
{% if page.cta %}
|
34
|
-
<footer>
|
35
|
-
<a href="{{ page.cta.link }}" class="button scrolly">{{ page.cta.text }}</a>
|
36
|
-
</footer>
|
37
|
-
{% endif %}
|
38
41
|
</div>
|
42
|
+
{% endcomment %}
|
43
|
+
{% if page.cta %}
|
44
|
+
<footer>
|
45
|
+
<a href="{{ page.cta.link }}" class="button scrolly">{{ page.cta.text }}</a>
|
46
|
+
</footer>
|
47
|
+
{% endif %}
|
39
48
|
</div>
|
40
49
|
</div>
|
41
50
|
</div>
|
data/_layouts/section_two.html
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
<header>
|
9
9
|
<div class="container">
|
10
10
|
<h2>{{ page.header.title }}</h2>
|
11
|
-
<p>{{ page.header.
|
11
|
+
<p>{{ page.header.body }}</p>
|
12
12
|
</div>
|
13
13
|
</header>
|
14
14
|
{% endif %}
|
@@ -33,7 +33,7 @@
|
|
33
33
|
{% endif %}
|
34
34
|
{% for image in page.images %}
|
35
35
|
<div class="col-{{ column_width }}">
|
36
|
-
<a href="{{ image.link }}" class="image fit">
|
36
|
+
<a href="{{ image.link }}" class="image fit scrolly">
|
37
37
|
<img
|
38
38
|
src="{{ image.url }}"
|
39
39
|
alt="{{ image.alt }}"
|
data/_sass/tessellate.scss
CHANGED
@@ -47,6 +47,7 @@
|
|
47
47
|
article, aside, details, figcaption, figure,
|
48
48
|
footer, header, hgroup, menu, nav, section {
|
49
49
|
display: block;
|
50
|
+
width: 100%;
|
50
51
|
}
|
51
52
|
|
52
53
|
body {
|
@@ -147,7 +148,7 @@
|
|
147
148
|
}
|
148
149
|
}
|
149
150
|
|
150
|
-
.nav-item.nav-item-right {
|
151
|
+
.nav-item.nav-item-right:last-child {
|
151
152
|
margin-right: 1em;
|
152
153
|
}
|
153
154
|
}
|
@@ -317,7 +318,7 @@
|
|
317
318
|
clear: both;
|
318
319
|
}
|
319
320
|
|
320
|
-
.featured {
|
321
|
+
.featured:not(.default) {
|
321
322
|
text-align: center;
|
322
323
|
|
323
324
|
p {
|
@@ -1281,8 +1282,8 @@
|
|
1281
1282
|
/* Button */
|
1282
1283
|
|
1283
1284
|
.button {
|
1284
|
-
padding-left: 0;
|
1285
|
-
padding-right: 0;
|
1285
|
+
padding-left: 0.5em;
|
1286
|
+
padding-right: 0.5em;
|
1286
1287
|
width: 100%;
|
1287
1288
|
max-width: 24em;
|
1288
1289
|
}
|
@@ -1337,3 +1338,14 @@
|
|
1337
1338
|
}
|
1338
1339
|
|
1339
1340
|
}
|
1341
|
+
|
1342
|
+
/* Code section formatting
|
1343
|
+
-------------------------------------------------- */
|
1344
|
+
|
1345
|
+
pre.highlight {
|
1346
|
+
padding: 0.25em 0.5em 0.25em 0.5em;
|
1347
|
+
overflow-x: scroll;
|
1348
|
+
margin-bottom: 1em;
|
1349
|
+
overflow: auto;
|
1350
|
+
}
|
1351
|
+
|
@@ -0,0 +1,203 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight .gh {
|
4
|
+
color: #999999;
|
5
|
+
}
|
6
|
+
.highlight .sr {
|
7
|
+
color: #f6aa11;
|
8
|
+
}
|
9
|
+
.highlight .go {
|
10
|
+
color: #888888;
|
11
|
+
}
|
12
|
+
.highlight .gp {
|
13
|
+
color: #555555;
|
14
|
+
}
|
15
|
+
.highlight .ge {
|
16
|
+
font-style: italic;
|
17
|
+
}
|
18
|
+
.highlight .ges {
|
19
|
+
font-weight: bold;
|
20
|
+
font-style: italic;
|
21
|
+
}
|
22
|
+
.highlight .gs {
|
23
|
+
font-weight: bold;
|
24
|
+
}
|
25
|
+
.highlight .gu {
|
26
|
+
color: #aaaaaa;
|
27
|
+
}
|
28
|
+
.highlight .nb {
|
29
|
+
color: #f6aa11;
|
30
|
+
}
|
31
|
+
.highlight .cm {
|
32
|
+
color: #75715e;
|
33
|
+
}
|
34
|
+
.highlight .cp {
|
35
|
+
color: #75715e;
|
36
|
+
}
|
37
|
+
.highlight .c1 {
|
38
|
+
color: #75715e;
|
39
|
+
}
|
40
|
+
.highlight .cs {
|
41
|
+
color: #75715e;
|
42
|
+
}
|
43
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
|
44
|
+
color: #75715e;
|
45
|
+
}
|
46
|
+
.highlight .err {
|
47
|
+
color: #960050;
|
48
|
+
}
|
49
|
+
.highlight .gr {
|
50
|
+
color: #960050;
|
51
|
+
}
|
52
|
+
.highlight .gt {
|
53
|
+
color: #960050;
|
54
|
+
}
|
55
|
+
.highlight .gd {
|
56
|
+
color: #49483e;
|
57
|
+
}
|
58
|
+
.highlight .gi {
|
59
|
+
color: #49483e;
|
60
|
+
}
|
61
|
+
.highlight .kc {
|
62
|
+
color: #66d9ef;
|
63
|
+
}
|
64
|
+
.highlight .kd {
|
65
|
+
color: #66d9ef;
|
66
|
+
}
|
67
|
+
.highlight .kr {
|
68
|
+
color: #66d9ef;
|
69
|
+
}
|
70
|
+
.highlight .no {
|
71
|
+
color: #66d9ef;
|
72
|
+
}
|
73
|
+
.highlight .kt {
|
74
|
+
color: #66d9ef;
|
75
|
+
}
|
76
|
+
.highlight .mf {
|
77
|
+
color: #ae81ff;
|
78
|
+
}
|
79
|
+
.highlight .mh {
|
80
|
+
color: #ae81ff;
|
81
|
+
}
|
82
|
+
.highlight .il {
|
83
|
+
color: #ae81ff;
|
84
|
+
}
|
85
|
+
.highlight .mi {
|
86
|
+
color: #ae81ff;
|
87
|
+
}
|
88
|
+
.highlight .mo {
|
89
|
+
color: #ae81ff;
|
90
|
+
}
|
91
|
+
.highlight .m, .highlight .mb, .highlight .mx {
|
92
|
+
color: #ae81ff;
|
93
|
+
}
|
94
|
+
.highlight .sc {
|
95
|
+
color: #ae81ff;
|
96
|
+
}
|
97
|
+
.highlight .se {
|
98
|
+
color: #ae81ff;
|
99
|
+
}
|
100
|
+
.highlight .ss {
|
101
|
+
color: #ae81ff;
|
102
|
+
}
|
103
|
+
.highlight .sd {
|
104
|
+
color: #e6db74;
|
105
|
+
}
|
106
|
+
.highlight .s2 {
|
107
|
+
color: #e6db74;
|
108
|
+
}
|
109
|
+
.highlight .sb {
|
110
|
+
color: #e6db74;
|
111
|
+
}
|
112
|
+
.highlight .sh {
|
113
|
+
color: #e6db74;
|
114
|
+
}
|
115
|
+
.highlight .si {
|
116
|
+
color: #e6db74;
|
117
|
+
}
|
118
|
+
.highlight .sx {
|
119
|
+
color: #e6db74;
|
120
|
+
}
|
121
|
+
.highlight .s1 {
|
122
|
+
color: #e6db74;
|
123
|
+
}
|
124
|
+
.highlight .s, .highlight .sa, .highlight .dl {
|
125
|
+
color: #e6db74;
|
126
|
+
}
|
127
|
+
.highlight .na {
|
128
|
+
color: #a6e22e;
|
129
|
+
}
|
130
|
+
.highlight .nc {
|
131
|
+
color: #a6e22e;
|
132
|
+
}
|
133
|
+
.highlight .nd {
|
134
|
+
color: #a6e22e;
|
135
|
+
}
|
136
|
+
.highlight .ne {
|
137
|
+
color: #a6e22e;
|
138
|
+
}
|
139
|
+
.highlight .nf, .highlight .fm {
|
140
|
+
color: #a6e22e;
|
141
|
+
}
|
142
|
+
.highlight .vc {
|
143
|
+
color: #ffffff;
|
144
|
+
background-color: #272822;
|
145
|
+
}
|
146
|
+
.highlight .nn {
|
147
|
+
color: #ffffff;
|
148
|
+
background-color: #272822;
|
149
|
+
}
|
150
|
+
.highlight .nl {
|
151
|
+
color: #ffffff;
|
152
|
+
background-color: #272822;
|
153
|
+
}
|
154
|
+
.highlight .ni {
|
155
|
+
color: #ffffff;
|
156
|
+
background-color: #272822;
|
157
|
+
}
|
158
|
+
.highlight .bp {
|
159
|
+
color: #ffffff;
|
160
|
+
background-color: #272822;
|
161
|
+
}
|
162
|
+
.highlight .vg {
|
163
|
+
color: #ffffff;
|
164
|
+
background-color: #272822;
|
165
|
+
}
|
166
|
+
.highlight .vi {
|
167
|
+
color: #ffffff;
|
168
|
+
background-color: #272822;
|
169
|
+
}
|
170
|
+
.highlight .nv, .highlight .vm {
|
171
|
+
color: #ffffff;
|
172
|
+
background-color: #272822;
|
173
|
+
}
|
174
|
+
.highlight .w {
|
175
|
+
color: #ffffff;
|
176
|
+
background-color: #272822;
|
177
|
+
}
|
178
|
+
.highlight {
|
179
|
+
color: #ffffff;
|
180
|
+
background-color: #272822;
|
181
|
+
}
|
182
|
+
.highlight .n, .highlight .py, .highlight .nx {
|
183
|
+
color: #ffffff;
|
184
|
+
background-color: #272822;
|
185
|
+
}
|
186
|
+
.highlight .ow {
|
187
|
+
color: #f92672;
|
188
|
+
}
|
189
|
+
.highlight .nt {
|
190
|
+
color: #f92672;
|
191
|
+
}
|
192
|
+
.highlight .k, .highlight .kv {
|
193
|
+
color: #f92672;
|
194
|
+
}
|
195
|
+
.highlight .kn {
|
196
|
+
color: #f92672;
|
197
|
+
}
|
198
|
+
.highlight .kp {
|
199
|
+
color: #f92672;
|
200
|
+
}
|
201
|
+
.highlight .o {
|
202
|
+
color: #f92672;
|
203
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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: tessellate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Preston Hager
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -63,6 +63,32 @@ files:
|
|
63
63
|
- assets/css/images/ie/content-style3.svg
|
64
64
|
- assets/css/images/overlay.png
|
65
65
|
- assets/css/style.scss
|
66
|
+
- assets/css/syntax.css
|
67
|
+
- assets/favicon/android-chrome-192x192.png
|
68
|
+
- assets/favicon/android-chrome-512x512.png
|
69
|
+
- assets/favicon/apple-touch-icon.png
|
70
|
+
- assets/favicon/favicon-16x16.png
|
71
|
+
- assets/favicon/favicon-32x32.png
|
72
|
+
- assets/favicon/favicon.ico
|
73
|
+
- assets/favicon/site.webmanifest
|
74
|
+
- assets/images/IMG_0001.jpg
|
75
|
+
- assets/images/IMG_0001_cropped.jpg
|
76
|
+
- assets/images/IMG_0002.jpg
|
77
|
+
- assets/images/IMG_0002_cropped.jpg
|
78
|
+
- assets/images/IMG_0003.jpg
|
79
|
+
- assets/images/IMG_0003_cropped.jpg
|
80
|
+
- assets/images/IMG_0004.jpg
|
81
|
+
- assets/images/IMG_0004_cropped.jpg
|
82
|
+
- assets/images/IMG_0005.jpg
|
83
|
+
- assets/images/IMG_0005_cropped.jpg
|
84
|
+
- assets/images/IMG_0006.jpg
|
85
|
+
- assets/images/IMG_0006_cropped.jpg
|
86
|
+
- assets/images/IMG_0007.jpg
|
87
|
+
- assets/images/IMG_0007_banner.jpg
|
88
|
+
- assets/images/IMG_0008.jpg
|
89
|
+
- assets/images/IMG_0009.jpg
|
90
|
+
- assets/images/IMG_0009_banner.jpg
|
91
|
+
- assets/images/IMG_0010.jpg
|
66
92
|
- assets/js/breakpoints.min.js
|
67
93
|
- assets/js/browser.min.js
|
68
94
|
- assets/js/jquery.min.js
|