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,177 @@
1
+ html {
2
+ color: #000; /* HTML5BP sets it to #222 why?? */
3
+ }
4
+ /* -----------------------------------------------------------------
5
+ optimal line length for reading is 50-75 characters, add some
6
+ left margin for menu and logo, this should probably be updated
7
+ for responsiveness based on viewport and whatnot
8
+ ----------------------------------------------------------------- */
9
+ body {
10
+ margin-left: 11em;
11
+ max-width: 51em;
12
+ }
13
+ body > footer {
14
+ padding: 0 2px 0 4px;
15
+ background: #eee;
16
+ }
17
+
18
+ /* -----------------------------------------------------------------
19
+ To make footers go to the bottom of the *window* and stay there
20
+ regardless of page content length.
21
+
22
+ Finally, an example that works!
23
+ https://stackoverflow.com/questions/54598718/how-can-i-get-my-content-to-be-scroll-able-while-maintaining-my-header-and-foote
24
+ ----------------------------------------------------------------- */
25
+ html { height: 100%; }
26
+ body {
27
+ height: 100%;
28
+ display: flex;
29
+ flex-direction: column;
30
+ }
31
+ main {
32
+ flex: auto;
33
+ flex-grow: 1;
34
+ overflow-y: auto;
35
+ /* -------------------------------------------------------------
36
+ This section is to push the scrollbar from the middle (right)
37
+ of the window to the side where scrollbars normally live.
38
+ Should use sass and variables for all the margin/padding numbers
39
+ ------------------------------------------------------------- */
40
+ box-sizing: border-box;
41
+ margin-left: -11em;
42
+ padding-left: 11em;
43
+ width: 100vw;
44
+ padding-right: calc(100vw - 62rem);
45
+ /* padding-right: -moz-calc(100% - 62rem);
46
+ padding-right: -webkit-calc(100% - 62rem); */
47
+ }
48
+ /* -----------------------------------------------------------------
49
+ The tabindex/javascript trick used to allow spacebar scrolling of
50
+ content parceled in the <main> also outlines the element in blue,
51
+ but since we didn't tabindex it for accessibility reasons, the
52
+ blue is just confusing.
53
+ ----------------------------------------------------------------- */
54
+ main:focus { outline: none; }
55
+
56
+ /* -----------------------------------------------------------------
57
+ positioning navigation elements
58
+ ----------------------------------------------------------------- */
59
+ #top-corner-logo {
60
+ position: fixed;
61
+ margin-left: -10.5rem;
62
+ width: 9.5rem;
63
+ top: 0.5rem;
64
+ }
65
+
66
+ #site-nav { /* bottom left corner */
67
+ width: 9.5rem;
68
+ position: fixed;
69
+ margin-left: -10.5rem;
70
+ border-top: none;
71
+ bottom: 0.5rem;
72
+ }
73
+ #page-nav { /* top left corner */
74
+ width: 6.5rem;
75
+ position: fixed;
76
+ margin-left: -10.5rem;
77
+ border-top: none;
78
+ top: 4rem;
79
+ }
80
+ nav#site-nav a, nav#page-nav a {
81
+ display: block;
82
+ text-align: right;
83
+ text-decoration: none;
84
+ font: Optima, Gill Sans, Arial, sans-serif;
85
+ font-weight: bold;
86
+ padding: 2px 4px 2px 0;
87
+ margin-top: 2px;
88
+ background: #ddd;
89
+ color: #000;
90
+ }
91
+ nav#site-nav a:hover, nav#page-nav a:hover { background: #bbf; }
92
+ nav#site-nav a:active, nav#page-nav a:active { background: #fbb; }
93
+ /* -----------------------------------------------------------------
94
+ If the current page is in the menu, it should not be a link so
95
+ it is not an href and we differentiate it visually as well.
96
+ ----------------------------------------------------------------- */
97
+ nav#site-nav a.nav-self, nav#page-nav a.nav-self {
98
+ background: linear-gradient(to right, #ddd, #ddd, white, white);
99
+ }
100
+ /* -----------------------------------------------------------------
101
+ If the current page is in the directory of a menu item, it should
102
+ still highlight as a link.
103
+ ----------------------------------------------------------------- */
104
+ nav#site-nav a.nav-sub,
105
+ nav#page-nav a.nav-sub {
106
+ background: linear-gradient(to right, #ddd, white);
107
+ }
108
+ nav#site-nav a.nav-sub:hover,
109
+ nav#page-nav a.nav-sub:hover {
110
+ background: linear-gradient(to right, #bbf, white);
111
+ }
112
+ nav#site-nav a.nav-sub:active,
113
+ nav#page-nav a.nav-sub:active {
114
+ background: linear-gradient(to right, #fbb, white);
115
+ }
116
+
117
+ /* -----------------------------------------------------------------
118
+ Styles for the pager buttons recommended by the
119
+ jekyll-paginate-v2 author, modified to make the whole boxed
120
+ area clickable and more clickability feedback.
121
+ ----------------------------------------------------------------- */
122
+ nav.blog-pager ul {
123
+ text-align: center;
124
+ list-style: none;
125
+ padding-left: 0;
126
+ }
127
+ nav.blog-pager ul li {
128
+ display: inline;
129
+ }
130
+ nav.blog-pager ul li a {
131
+ display: inline-block;
132
+ border: 1px solid black;
133
+ padding: 10px 15px;
134
+ margin: 0 1px;
135
+ }
136
+ nav.blog-pager ul li a:hover:not([rel="self"]),
137
+ nav.blog-pager ul li a:focus:not([rel="self"]) {
138
+ border-color:blue;
139
+ color: blue;
140
+ }
141
+ nav.blog-pager ul li a:active:not([rel="self"]) {
142
+ border-color: red;
143
+ color: red;
144
+ }
145
+
146
+ /* -----------------------------------------------------------------
147
+ styling the list of categories and tags
148
+ ----------------------------------------------------------------- */
149
+ .categories, .tags {
150
+ display: inline-block;
151
+ color: black;
152
+ padding: 0.5px 6px;
153
+ border-radius: 3px;
154
+ }
155
+ .categories { box-shadow: inset 0 0 6px #000; }
156
+ .tags { box-shadow: inset 0 0 6px #666; }
157
+ a.categories, a.tags,
158
+ .categories:hover, .tags:hover,
159
+ .categories:active, .tags:active { text-decoration: none; }
160
+ .categories:hover { box-shadow: inset 0 0 7.5px #009; }
161
+ .tags:hover { box-shadow: inset 0 0 7.5px #55f; }
162
+ .categories:active { box-shadow: inset 0 0 15px #f00; }
163
+ .tags:active { box-shadow: inset 0 0 15px #f55; }
164
+ .catag:last-child:after { /* line break after tags and categories*/
165
+ content: ' ';
166
+ display: block;
167
+ }
168
+
169
+ /* -----------------------------------------------------------------
170
+ Styles for the blog lists
171
+ ----------------------------------------------------------------- */
172
+ article > header > h3,
173
+ article > header > h1
174
+ { margin-bottom: 0; }
175
+
176
+ .related h2 { margin-bottom: 0; }
177
+ .related ul { margin-top: 0; }
Binary file
data/assets/tile.png ADDED
Binary file
metadata ADDED
@@ -0,0 +1,156 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: structrdfal
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Carol Wang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-03-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-paginate-v2
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 2.0.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 2.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.16'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.16'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '12.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '12.0'
69
+ description: A theme focused on structured data marked up using RDFa Lite based on
70
+ HTML5 Boilerplate.
71
+ email:
72
+ - aarghc@gmail.com
73
+ executables: []
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - LICENSE.txt
78
+ - README.md
79
+ - _includes/blogList.html
80
+ - _includes/blogList.html~1
81
+ - _includes/blogList.html~2
82
+ - _includes/catag-old.html
83
+ - _includes/catag.html
84
+ - _includes/footer.html
85
+ - _includes/nav.html
86
+ - _layouts/aboutPage.html
87
+ - _layouts/autopage_category.html
88
+ - _layouts/autopage_tags.html
89
+ - _layouts/bloghome.html
90
+ - _layouts/contactPage.html
91
+ - _layouts/default.html
92
+ - _layouts/event.html
93
+ - _layouts/page.html
94
+ - _layouts/post.html
95
+ - _layouts/sitehome.html
96
+ - _sass/_variables.scss
97
+ - _sass/_vertical-rhythm.scss
98
+ - assets/.colophon/html5-boilerplate_v7.0.1/404.html
99
+ - assets/.colophon/html5-boilerplate_v7.0.1/LICENSE.txt
100
+ - assets/.colophon/html5-boilerplate_v7.0.1/docs/TOC.md
101
+ - assets/.colophon/html5-boilerplate_v7.0.1/docs/css.md
102
+ - assets/.colophon/html5-boilerplate_v7.0.1/docs/extend.md
103
+ - assets/.colophon/html5-boilerplate_v7.0.1/docs/faq.md
104
+ - assets/.colophon/html5-boilerplate_v7.0.1/docs/html.md
105
+ - assets/.colophon/html5-boilerplate_v7.0.1/docs/js.md
106
+ - assets/.colophon/html5-boilerplate_v7.0.1/docs/misc.md
107
+ - assets/.colophon/html5-boilerplate_v7.0.1/docs/usage.md
108
+ - assets/.colophon/html5-boilerplate_v7.0.1/index.html
109
+ - assets/.colophon/normalize-scss/README.md
110
+ - assets/.editorconfig
111
+ - assets/.htaccess
112
+ - assets/404.html
113
+ - assets/browserconfig.xml
114
+ - assets/contactform.html
115
+ - assets/eventform.html
116
+ - assets/favicon.ico
117
+ - assets/humans.txt
118
+ - assets/icon.png
119
+ - assets/robots.txt
120
+ - assets/scripts/.DS_Store
121
+ - assets/scripts/main.js
122
+ - assets/scripts/plugins.js
123
+ - assets/scripts/vendor/jquery-3.3.1.min.js
124
+ - assets/scripts/vendor/modernizr-3.6.0.min.js
125
+ - assets/site.webmanifest
126
+ - assets/styles/HTML5BP-main.css
127
+ - assets/styles/form.css
128
+ - assets/styles/normalize.css
129
+ - assets/styles/structRDFaL.css
130
+ - assets/tile-wide.png
131
+ - assets/tile.png
132
+ homepage: http://example.com/
133
+ licenses:
134
+ - MIT
135
+ metadata: {}
136
+ post_install_message:
137
+ rdoc_options: []
138
+ require_paths:
139
+ - lib
140
+ required_ruby_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ required_rubygems_version: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - ">="
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ requirements: []
151
+ rubyforge_project:
152
+ rubygems_version: 2.7.6
153
+ signing_key:
154
+ specification_version: 4
155
+ summary: Structured Data using RDFa Lite.
156
+ test_files: []