structrdfal 0.1.0

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.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +133 -0
  4. data/_includes/blogList.html +82 -0
  5. data/_includes/blogList.html~1 +100 -0
  6. data/_includes/blogList.html~2 +85 -0
  7. data/_includes/catag-old.html +15 -0
  8. data/_includes/catag.html +16 -0
  9. data/_includes/footer.html +18 -0
  10. data/_includes/nav.html +14 -0
  11. data/_layouts/aboutPage.html +5 -0
  12. data/_layouts/autopage_category.html +11 -0
  13. data/_layouts/autopage_tags.html +12 -0
  14. data/_layouts/bloghome.html +10 -0
  15. data/_layouts/contactPage.html +5 -0
  16. data/_layouts/default.html +131 -0
  17. data/_layouts/event.html +145 -0
  18. data/_layouts/page.html +4 -0
  19. data/_layouts/post.html +34 -0
  20. data/_layouts/sitehome.html +62 -0
  21. data/_sass/_variables.scss +36 -0
  22. data/_sass/_vertical-rhythm.scss +61 -0
  23. data/assets/.colophon/html5-boilerplate_v7.0.1/404.html +60 -0
  24. data/assets/.colophon/html5-boilerplate_v7.0.1/LICENSE.txt +19 -0
  25. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/TOC.md +34 -0
  26. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/css.md +54 -0
  27. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/extend.md +640 -0
  28. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/faq.md +42 -0
  29. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/html.md +198 -0
  30. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/js.md +36 -0
  31. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/misc.md +173 -0
  32. data/assets/.colophon/html5-boilerplate_v7.0.1/docs/usage.md +130 -0
  33. data/assets/.colophon/html5-boilerplate_v7.0.1/index.html +41 -0
  34. data/assets/.colophon/normalize-scss/README.md +158 -0
  35. data/assets/.editorconfig +13 -0
  36. data/assets/.htaccess +1224 -0
  37. data/assets/404.html +6 -0
  38. data/assets/browserconfig.xml +12 -0
  39. data/assets/contactform.html +23 -0
  40. data/assets/eventform.html +110 -0
  41. data/assets/favicon.ico +0 -0
  42. data/assets/humans.txt +16 -0
  43. data/assets/icon.png +0 -0
  44. data/assets/robots.txt +5 -0
  45. data/assets/scripts/.DS_Store +0 -0
  46. data/assets/scripts/main.js +0 -0
  47. data/assets/scripts/plugins.js +24 -0
  48. data/assets/scripts/vendor/jquery-3.3.1.min.js +2 -0
  49. data/assets/scripts/vendor/modernizr-3.6.0.min.js +3 -0
  50. data/assets/site.webmanifest +12 -0
  51. data/assets/styles/HTML5BP-main.css +290 -0
  52. data/assets/styles/form.css +81 -0
  53. data/assets/styles/normalize.css +349 -0
  54. data/assets/styles/structRDFaL.css +177 -0
  55. data/assets/tile-wide.png +0 -0
  56. data/assets/tile.png +0 -0
  57. metadata +156 -0
@@ -0,0 +1,290 @@
1
+ /*! HTML5 Boilerplate v7.0.1 | MIT License | https://html5boilerplate.com/ */
2
+
3
+ /* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
4
+ /*
5
+ * What follows is the result of much research on cross-browser styling.
6
+ * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
7
+ * Kroc Camen, and the H5BP dev community and team.
8
+ */
9
+
10
+
11
+ /* ==========================================================================
12
+ Base styles: opinionated defaults
13
+ ========================================================================== */
14
+
15
+ html {
16
+ color: #222;
17
+ font-size: 1em;
18
+ line-height: 1.4;
19
+ }
20
+
21
+ /*
22
+ * Remove text-shadow in selection highlight:
23
+ * https://twitter.com/miketaylr/status/12228805301
24
+ *
25
+ * Vendor-prefixed and regular ::selection selectors cannot be combined:
26
+ * https://stackoverflow.com/a/16982510/7133471
27
+ *
28
+ * Customize the background color to match your design.
29
+ */
30
+
31
+ ::selection {
32
+ background: #b3d4fc;
33
+ text-shadow: none;
34
+ }
35
+
36
+ /*
37
+ * A better looking default horizontal rule
38
+ */
39
+
40
+ hr {
41
+ display: block;
42
+ height: 1px;
43
+ border: 0;
44
+ border-top: 1px solid #ccc;
45
+ margin: 1em 0;
46
+ padding: 0;
47
+ }
48
+
49
+ /*
50
+ * Remove the gap between audio, canvas, iframes,
51
+ * images, videos and the bottom of their containers:
52
+ * https://github.com/h5bp/html5-boilerplate/issues/440
53
+ */
54
+
55
+ audio,
56
+ canvas,
57
+ iframe,
58
+ img,
59
+ svg,
60
+ video {
61
+ vertical-align: middle;
62
+ }
63
+
64
+ /*
65
+ * Remove default fieldset styles.
66
+ */
67
+
68
+ fieldset {
69
+ border: 0;
70
+ margin: 0;
71
+ padding: 0;
72
+ }
73
+
74
+ /*
75
+ * Allow only vertical resizing of textareas.
76
+ */
77
+
78
+ textarea {
79
+ resize: vertical;
80
+ }
81
+
82
+ /* ==========================================================================
83
+ Browser Upgrade Prompt
84
+ ========================================================================== */
85
+
86
+ .browserupgrade {
87
+ margin: 0.2em 0;
88
+ background: #ccc;
89
+ color: #000;
90
+ padding: 0.2em 0;
91
+ }
92
+
93
+
94
+
95
+
96
+ /* ==========================================================================
97
+ Author's custom styles
98
+ ========================================================================== */
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+ /* ==========================================================================
116
+ Helper classes
117
+ ========================================================================== */
118
+
119
+ /*
120
+ * Hide visually and from screen readers
121
+ */
122
+
123
+ .hidden {
124
+ display: none !important;
125
+ }
126
+
127
+ /*
128
+ * Hide only visually, but have it available for screen readers:
129
+ * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
130
+ *
131
+ * 1. For long content, line feeds are not interpreted as spaces and small width
132
+ * causes content to wrap 1 word per line:
133
+ * https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
134
+ */
135
+
136
+ .visuallyhidden {
137
+ border: 0;
138
+ clip: rect(0 0 0 0);
139
+ height: 1px;
140
+ margin: -1px;
141
+ overflow: hidden;
142
+ padding: 0;
143
+ position: absolute;
144
+ width: 1px;
145
+ white-space: nowrap; /* 1 */
146
+ }
147
+
148
+ /*
149
+ * Extends the .visuallyhidden class to allow the element
150
+ * to be focusable when navigated to via the keyboard:
151
+ * https://www.drupal.org/node/897638
152
+ */
153
+
154
+ .visuallyhidden.focusable:active,
155
+ .visuallyhidden.focusable:focus {
156
+ clip: auto;
157
+ height: auto;
158
+ margin: 0;
159
+ overflow: visible;
160
+ position: static;
161
+ width: auto;
162
+ white-space: inherit;
163
+ }
164
+
165
+ /*
166
+ * Hide visually and from screen readers, but maintain layout
167
+ */
168
+
169
+ .invisible {
170
+ visibility: hidden;
171
+ }
172
+
173
+ /*
174
+ * Clearfix: contain floats
175
+ *
176
+ * For modern browsers
177
+ * 1. The space content is one way to avoid an Opera bug when the
178
+ * `contenteditable` attribute is included anywhere else in the document.
179
+ * Otherwise it causes space to appear at the top and bottom of elements
180
+ * that receive the `clearfix` class.
181
+ * 2. The use of `table` rather than `block` is only necessary if using
182
+ * `:before` to contain the top-margins of child elements.
183
+ */
184
+
185
+ .clearfix:before,
186
+ .clearfix:after {
187
+ content: " "; /* 1 */
188
+ display: table; /* 2 */
189
+ }
190
+
191
+ .clearfix:after {
192
+ clear: both;
193
+ }
194
+
195
+
196
+ /* ==========================================================================
197
+ EXAMPLE Media Queries for Responsive Design.
198
+ These examples override the primary ('mobile first') styles.
199
+ Modify as content requires.
200
+ ========================================================================== */
201
+
202
+ @media only screen and (min-width: 35em) {
203
+ /* Style adjustments for viewports that meet the condition */
204
+ }
205
+
206
+ @media print,
207
+ (-webkit-min-device-pixel-ratio: 1.25),
208
+ (min-resolution: 1.25dppx),
209
+ (min-resolution: 120dpi) {
210
+ /* Style adjustments for high resolution devices */
211
+ }
212
+
213
+
214
+ /* ==========================================================================
215
+ Print styles.
216
+ Inlined to avoid the additional HTTP request:
217
+ https://www.phpied.com/delay-loading-your-print-css/
218
+ ========================================================================== */
219
+
220
+ @media print {
221
+ *,
222
+ *:before,
223
+ *:after {
224
+ background: transparent !important;
225
+ color: #000 !important; /* Black prints faster */
226
+ -webkit-box-shadow: none !important;
227
+ box-shadow: none !important;
228
+ text-shadow: none !important;
229
+ }
230
+
231
+ a,
232
+ a:visited {
233
+ text-decoration: underline;
234
+ }
235
+
236
+ a[href]:after {
237
+ content: " (" attr(href) ")";
238
+ }
239
+
240
+ abbr[title]:after {
241
+ content: " (" attr(title) ")";
242
+ }
243
+
244
+ /*
245
+ * Don't show links that are fragment identifiers,
246
+ * or use the `javascript:` pseudo protocol
247
+ */
248
+
249
+ a[href^="#"]:after,
250
+ a[href^="javascript:"]:after {
251
+ content: "";
252
+ }
253
+
254
+ pre {
255
+ white-space: pre-wrap !important;
256
+ }
257
+ pre,
258
+ blockquote {
259
+ border: 1px solid #999;
260
+ page-break-inside: avoid;
261
+ }
262
+
263
+ /*
264
+ * Printing Tables:
265
+ * http://css-discuss.incutio.com/wiki/Printing_Tables
266
+ */
267
+
268
+ thead {
269
+ display: table-header-group;
270
+ }
271
+
272
+ tr,
273
+ img {
274
+ page-break-inside: avoid;
275
+ }
276
+
277
+ p,
278
+ h2,
279
+ h3 {
280
+ orphans: 3;
281
+ widows: 3;
282
+ }
283
+
284
+ h2,
285
+ h3 {
286
+ page-break-after: avoid;
287
+ }
288
+ }
289
+
290
+
@@ -0,0 +1,81 @@
1
+ /* Mostly from the MDN web docs tutorial, IIRC. */
2
+ form {
3
+ /* To see the outline of the form */
4
+ padding: 1em;
5
+ border: 1px solid #CCC;
6
+ border-radius: 1em;
7
+ }
8
+
9
+ label {
10
+ /* To make sure that all labels have the same size and are properly aligned */
11
+ display: inline-block;
12
+ width: 9em;
13
+ text-align: right;
14
+ }
15
+
16
+ /* ----------------------------------------------------------------------
17
+ unsetting the normalize reset (I like it better this way)
18
+ ---------------------------------------------------------------------- */
19
+ fieldset {
20
+ border: 1.5px solid #c0c0c0;
21
+ margin: 0 2px 1ex;
22
+ padding: 0.35em 0.625em 0.75em;
23
+ }
24
+
25
+ /**
26
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
27
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
28
+ */
29
+
30
+ legend {
31
+ border: 0; /* 1 */
32
+ padding: 0 2px; /* 2 */
33
+ }
34
+ /* ---------------------------------------------------------------------- */
35
+
36
+ fieldset label {
37
+ /* To make sure that all labels have the same size and are properly aligned */
38
+ width: 8em;
39
+ }
40
+
41
+ input:not([type='date']):not([type='reset']):not([type='submit']), textarea {
42
+ /* To make sure that all text fields have the same font settings
43
+ By default, textareas have a monospace font */
44
+ font: 1em inherit;
45
+
46
+ /* To give the same size to all text fields */
47
+ width: 35em;
48
+ box-sizing: border-box;
49
+
50
+ /* To harmonize the look & feel of text field border */
51
+ border: 1px solid #999;
52
+ }
53
+ /*input[required], textarea[required] { background: #fff3f3; } */
54
+ ::placeholder, textarea { font-style: italic; }
55
+ input:invalid, textarea:invalid, select:invalid {background: yellow; }
56
+
57
+ input:focus, textarea:focus {
58
+ /* To give a little highlight on active elements */
59
+ border-color: #000;
60
+ }
61
+
62
+ textarea {
63
+ /* To properly align multiline text fields with their labels */
64
+ vertical-align: top;
65
+ }
66
+
67
+ textarea:not([name='event-loc-streetAddress']):not([rows]) {
68
+ /* To give enough room to type some text */
69
+ height: 5em;
70
+ }
71
+
72
+ input[type='reset'], input[type='submit'] {
73
+ margin-top: .4em;
74
+ font-size: 1rem;
75
+ }
76
+
77
+ input[type='reset'] {
78
+ /* To position the buttons to the same position of the text fields */
79
+ margin-left: 9.2em;
80
+ }
81
+
@@ -0,0 +1,349 @@
1
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /* Document
4
+ ========================================================================== */
5
+
6
+ /**
7
+ * 1. Correct the line height in all browsers.
8
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
9
+ */
10
+
11
+ html {
12
+ line-height: 1.15; /* 1 */
13
+ -webkit-text-size-adjust: 100%; /* 2 */
14
+ }
15
+
16
+ /* Sections
17
+ ========================================================================== */
18
+
19
+ /**
20
+ * Remove the margin in all browsers.
21
+ */
22
+
23
+ body {
24
+ margin: 0;
25
+ }
26
+
27
+ /**
28
+ * Render the `main` element consistently in IE.
29
+ */
30
+
31
+ main {
32
+ display: block;
33
+ }
34
+
35
+ /**
36
+ * Correct the font size and margin on `h1` elements within `section` and
37
+ * `article` contexts in Chrome, Firefox, and Safari.
38
+ */
39
+
40
+ h1 {
41
+ font-size: 2em;
42
+ margin: 0.67em 0;
43
+ }
44
+
45
+ /* Grouping content
46
+ ========================================================================== */
47
+
48
+ /**
49
+ * 1. Add the correct box sizing in Firefox.
50
+ * 2. Show the overflow in Edge and IE.
51
+ */
52
+
53
+ hr {
54
+ box-sizing: content-box; /* 1 */
55
+ height: 0; /* 1 */
56
+ overflow: visible; /* 2 */
57
+ }
58
+
59
+ /**
60
+ * 1. Correct the inheritance and scaling of font size in all browsers.
61
+ * 2. Correct the odd `em` font sizing in all browsers.
62
+ */
63
+
64
+ pre {
65
+ font-family: monospace, monospace; /* 1 */
66
+ font-size: 1em; /* 2 */
67
+ }
68
+
69
+ /* Text-level semantics
70
+ ========================================================================== */
71
+
72
+ /**
73
+ * Remove the gray background on active links in IE 10.
74
+ */
75
+
76
+ a {
77
+ background-color: transparent;
78
+ }
79
+
80
+ /**
81
+ * 1. Remove the bottom border in Chrome 57-
82
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
83
+ */
84
+
85
+ abbr[title] {
86
+ border-bottom: none; /* 1 */
87
+ text-decoration: underline; /* 2 */
88
+ text-decoration: underline dotted; /* 2 */
89
+ }
90
+
91
+ /**
92
+ * Add the correct font weight in Chrome, Edge, and Safari.
93
+ */
94
+
95
+ b,
96
+ strong {
97
+ font-weight: bolder;
98
+ }
99
+
100
+ /**
101
+ * 1. Correct the inheritance and scaling of font size in all browsers.
102
+ * 2. Correct the odd `em` font sizing in all browsers.
103
+ */
104
+
105
+ code,
106
+ kbd,
107
+ samp {
108
+ font-family: monospace, monospace; /* 1 */
109
+ font-size: 1em; /* 2 */
110
+ }
111
+
112
+ /**
113
+ * Add the correct font size in all browsers.
114
+ */
115
+
116
+ small {
117
+ font-size: 80%;
118
+ }
119
+
120
+ /**
121
+ * Prevent `sub` and `sup` elements from affecting the line height in
122
+ * all browsers.
123
+ */
124
+
125
+ sub,
126
+ sup {
127
+ font-size: 75%;
128
+ line-height: 0;
129
+ position: relative;
130
+ vertical-align: baseline;
131
+ }
132
+
133
+ sub {
134
+ bottom: -0.25em;
135
+ }
136
+
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+
141
+ /* Embedded content
142
+ ========================================================================== */
143
+
144
+ /**
145
+ * Remove the border on images inside links in IE 10.
146
+ */
147
+
148
+ img {
149
+ border-style: none;
150
+ }
151
+
152
+ /* Forms
153
+ ========================================================================== */
154
+
155
+ /**
156
+ * 1. Change the font styles in all browsers.
157
+ * 2. Remove the margin in Firefox and Safari.
158
+ */
159
+
160
+ button,
161
+ input,
162
+ optgroup,
163
+ select,
164
+ textarea {
165
+ font-family: inherit; /* 1 */
166
+ font-size: 100%; /* 1 */
167
+ line-height: 1.15; /* 1 */
168
+ margin: 0; /* 2 */
169
+ }
170
+
171
+ /**
172
+ * Show the overflow in IE.
173
+ * 1. Show the overflow in Edge.
174
+ */
175
+
176
+ button,
177
+ input { /* 1 */
178
+ overflow: visible;
179
+ }
180
+
181
+ /**
182
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
183
+ * 1. Remove the inheritance of text transform in Firefox.
184
+ */
185
+
186
+ button,
187
+ select { /* 1 */
188
+ text-transform: none;
189
+ }
190
+
191
+ /**
192
+ * Correct the inability to style clickable types in iOS and Safari.
193
+ */
194
+
195
+ button,
196
+ [type="button"],
197
+ [type="reset"],
198
+ [type="submit"] {
199
+ -webkit-appearance: button;
200
+ }
201
+
202
+ /**
203
+ * Remove the inner border and padding in Firefox.
204
+ */
205
+
206
+ button::-moz-focus-inner,
207
+ [type="button"]::-moz-focus-inner,
208
+ [type="reset"]::-moz-focus-inner,
209
+ [type="submit"]::-moz-focus-inner {
210
+ border-style: none;
211
+ padding: 0;
212
+ }
213
+
214
+ /**
215
+ * Restore the focus styles unset by the previous rule.
216
+ */
217
+
218
+ button:-moz-focusring,
219
+ [type="button"]:-moz-focusring,
220
+ [type="reset"]:-moz-focusring,
221
+ [type="submit"]:-moz-focusring {
222
+ outline: 1px dotted ButtonText;
223
+ }
224
+
225
+ /**
226
+ * Correct the padding in Firefox.
227
+ */
228
+
229
+ fieldset {
230
+ padding: 0.35em 0.75em 0.625em;
231
+ }
232
+
233
+ /**
234
+ * 1. Correct the text wrapping in Edge and IE.
235
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
236
+ * 3. Remove the padding so developers are not caught out when they zero out
237
+ * `fieldset` elements in all browsers.
238
+ */
239
+
240
+ legend {
241
+ box-sizing: border-box; /* 1 */
242
+ color: inherit; /* 2 */
243
+ display: table; /* 1 */
244
+ max-width: 100%; /* 1 */
245
+ padding: 0; /* 3 */
246
+ white-space: normal; /* 1 */
247
+ }
248
+
249
+ /**
250
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
251
+ */
252
+
253
+ progress {
254
+ vertical-align: baseline;
255
+ }
256
+
257
+ /**
258
+ * Remove the default vertical scrollbar in IE 10+.
259
+ */
260
+
261
+ textarea {
262
+ overflow: auto;
263
+ }
264
+
265
+ /**
266
+ * 1. Add the correct box sizing in IE 10.
267
+ * 2. Remove the padding in IE 10.
268
+ */
269
+
270
+ [type="checkbox"],
271
+ [type="radio"] {
272
+ box-sizing: border-box; /* 1 */
273
+ padding: 0; /* 2 */
274
+ }
275
+
276
+ /**
277
+ * Correct the cursor style of increment and decrement buttons in Chrome.
278
+ */
279
+
280
+ [type="number"]::-webkit-inner-spin-button,
281
+ [type="number"]::-webkit-outer-spin-button {
282
+ height: auto;
283
+ }
284
+
285
+ /**
286
+ * 1. Correct the odd appearance in Chrome and Safari.
287
+ * 2. Correct the outline style in Safari.
288
+ */
289
+
290
+ [type="search"] {
291
+ -webkit-appearance: textfield; /* 1 */
292
+ outline-offset: -2px; /* 2 */
293
+ }
294
+
295
+ /**
296
+ * Remove the inner padding in Chrome and Safari on macOS.
297
+ */
298
+
299
+ [type="search"]::-webkit-search-decoration {
300
+ -webkit-appearance: none;
301
+ }
302
+
303
+ /**
304
+ * 1. Correct the inability to style clickable types in iOS and Safari.
305
+ * 2. Change font properties to `inherit` in Safari.
306
+ */
307
+
308
+ ::-webkit-file-upload-button {
309
+ -webkit-appearance: button; /* 1 */
310
+ font: inherit; /* 2 */
311
+ }
312
+
313
+ /* Interactive
314
+ ========================================================================== */
315
+
316
+ /*
317
+ * Add the correct display in Edge, IE 10+, and Firefox.
318
+ */
319
+
320
+ details {
321
+ display: block;
322
+ }
323
+
324
+ /*
325
+ * Add the correct display in all browsers.
326
+ */
327
+
328
+ summary {
329
+ display: list-item;
330
+ }
331
+
332
+ /* Misc
333
+ ========================================================================== */
334
+
335
+ /**
336
+ * Add the correct display in IE 10+.
337
+ */
338
+
339
+ template {
340
+ display: none;
341
+ }
342
+
343
+ /**
344
+ * Add the correct display in IE 10.
345
+ */
346
+
347
+ [hidden] {
348
+ display: none;
349
+ }