j1-template 2021.0.10 → 2021.0.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/assets/themes/j1/adapter/js/themer.js +45 -22
- data/lib/j1/commands/generate.rb +1 -1
- data/lib/j1/version.rb +1 -1
- data/lib/starter_web/Gemfile +1 -1
- data/lib/starter_web/_config.yml +2 -2
- data/lib/starter_web/_data/blocks/banner.yml +18 -6
- data/lib/starter_web/_data/modules/fam.yml +8 -0
- data/lib/starter_web/_includes/attributes.asciidoc +9 -1
- data/lib/starter_web/_plugins/lunr_index.rb +1 -1
- data/lib/starter_web/assets/images/modules/attics/joel-filipe-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/attics/markus-spiske3-1920x1280.jpg +0 -0
- data/lib/starter_web/assets/images/modules/icons/d1/scalable/d1.svg +1 -1
- data/lib/starter_web/collections/posts/public/featured/_posts/2020-06-01-about-cookies.adoc +5 -2
- data/lib/starter_web/dot.gitignore +2 -3
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/pages/public/about/about_site.adoc +6 -7
- data/lib/starter_web/pages/public/learn/roundtrip/300_icon_fonts.adoc +79 -46
- data/lib/starter_web/pages/public/learn/roundtrip/400_asciidoc_extensions.adoc +0 -7
- data/lib/starter_web/pages/public/learn/where_to_go.adoc +5 -15
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +4 -11
- data/lib/j1/templates/posts/0000-00-00-welcome-to-j1-template.adoc.erb +0 -72
- data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-welcome-to-j1.adoc +0 -167
- data/lib/starter_web/pages/public/legal/de/100_impress.adoc +0 -98
- data/lib/starter_web/pages/public/legal/de/200_terms_of_use.adoc +0 -55
- data/lib/starter_web/pages/public/legal/de/300_privacy.adoc +0 -295
- data/lib/starter_web/pages/public/legal/de/400_license_agreement.adoc +0 -395
- data/lib/starter_web/pages/public/legal/de/500_support.adoc +0 -20
- data/lib/starter_web/pages/public/legal/en/400_license_agreement.adoc +0 -441
- data/lib/starter_web/pages/public/legal/en/500_support.adoc +0 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6acbcf086ed7aaec81c396b5f33d9e9b0dba8609961994d26399a5f337612dc
|
|
4
|
+
data.tar.gz: 8f933f72a2ea77c7f9281aa29c9b93d69d60ee8eca260f8ce40c781506a169d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f73a7470478f7d39715b96e2d1b4bb732351e2ef055e465ac8ad1a3fe0a74050c422f0dcfa6def734b1135fda0df5ac5d007287c54ae52c59bfeb3d93d96ec3
|
|
7
|
+
data.tar.gz: 571abb6187ac1640cf88230dc188099f1d4591ba1227226b1e04587c4973f61c2634ae2712cc32565c3bd3c5349ac152f504fe6adc4923f8df207e26df4c32c8
|
|
@@ -197,32 +197,55 @@ j1.adapter['themer'] = (function (j1, window) {
|
|
|
197
197
|
if (j1.getState() == 'finished') {
|
|
198
198
|
if (themerOptions.enabled) {
|
|
199
199
|
// enable BS ThemeSwitcher
|
|
200
|
+
//
|
|
200
201
|
logger.info('themes detected as: enabled');
|
|
201
202
|
logger.info('theme is being initialized: ' + user_state.theme_name);
|
|
202
203
|
|
|
204
|
+
// jadams, 2021-02-22: make sure that remote themes are loaded
|
|
205
|
+
// max retries = max_count
|
|
206
|
+
|
|
207
|
+
// load list of remote themes
|
|
208
|
+
//
|
|
203
209
|
if ( $('#remote_themes').length ) {
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
210
|
+
var interval_count = 0;
|
|
211
|
+
var max_count = 5;
|
|
212
|
+
|
|
213
|
+
var dependencies_met_remote_themes_loaded = setInterval(function() {
|
|
214
|
+
interval_count += 1;
|
|
215
|
+
if ( document.getElementById("remote_themes").getElementsByTagName("li").length == 0 ) {
|
|
216
|
+
/* eslint-disable */
|
|
217
|
+
// initialize Bootswatch Theme Switcher
|
|
218
|
+
$('#remote_themes').bootstrapThemeSwitcher.defaults = {
|
|
219
|
+
debug: themerOptions.debug,
|
|
220
|
+
saveToCookie: themerOptions.saveToCookie,
|
|
221
|
+
cssThemeLink: themerOptions.cssThemeLink,
|
|
222
|
+
cookieThemeName: themerOptions.cookieThemeName,
|
|
223
|
+
cookieDefaultThemeName: themerOptions.cookieDefaultThemeName,
|
|
224
|
+
cookieThemeCss: themerOptions.cookieThemeCss,
|
|
225
|
+
cookieThemeExtensionCss: themerOptions.cookieThemeExtensionCss,
|
|
226
|
+
cookieExpiration: themerOptions.cookieExpiration,
|
|
227
|
+
cookiePath: themerOptions.cookiePath,
|
|
228
|
+
defaultCssFile: themerOptions.defaultCssFile,
|
|
229
|
+
bootswatchApiUrl: themerOptions.bootswatchApiUrl,
|
|
230
|
+
bootswatchApiVersion: themerOptions.bootswatchApiVersion,
|
|
231
|
+
loadFromBootswatch: themerOptions.loadFromBootswatch,
|
|
232
|
+
localFeed: themerOptions.localThemes,
|
|
233
|
+
excludeBootswatch: themerOptions.excludeBootswatch,
|
|
234
|
+
includeBootswatch: themerOptions.includeBootswatch,
|
|
235
|
+
skipIncludeBootswatch: themerOptions.skipIncludeBootswatch
|
|
236
|
+
}
|
|
237
|
+
/* eslint-enable */
|
|
238
|
+
} else {
|
|
239
|
+
logger.info('remote themes loaded: successfully');
|
|
240
|
+
logger.debug('remote themes loaded: successfully after: ' + interval_count * 25 + ' ms');
|
|
241
|
+
clearInterval(dependencies_met_remote_themes_loaded);
|
|
242
|
+
}
|
|
243
|
+
if (interval_count > max_count) {
|
|
244
|
+
logger.warn('remote themes loading: failed');
|
|
245
|
+
logger.warn('continue processing');
|
|
246
|
+
clearInterval(dependencies_met_remote_themes_loaded);
|
|
247
|
+
}
|
|
248
|
+
}, 25);
|
|
226
249
|
|
|
227
250
|
logger.info('theme loaded: ' + user_state.theme_name);
|
|
228
251
|
logger.info('theme css file: ' + user_state.theme_css);
|
data/lib/j1/commands/generate.rb
CHANGED
|
@@ -57,7 +57,7 @@ module J1
|
|
|
57
57
|
# Internal: Gets the filename of the sample post to be created
|
|
58
58
|
# Returns the filename of the sample post, as a String
|
|
59
59
|
def initialized_post_name
|
|
60
|
-
"collections/posts/public/featured/_posts/#{Time.now.strftime("%Y-%m-%d")}-welcome-to-j1
|
|
60
|
+
"collections/posts/public/featured/_posts/#{Time.now.strftime("%Y-%m-%d")}-welcome-to-j1.adoc"
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
private
|
data/lib/j1/version.rb
CHANGED
data/lib/starter_web/Gemfile
CHANGED
|
@@ -54,7 +54,7 @@ gem 'jekyll', '~> 4.2'
|
|
|
54
54
|
|
|
55
55
|
# Theme Rubies, default: J1 Template
|
|
56
56
|
#
|
|
57
|
-
gem 'j1-template', '~> 2021.0.
|
|
57
|
+
gem 'j1-template', '~> 2021.0.11'
|
|
58
58
|
|
|
59
59
|
# ------------------------------------------------------------------------------
|
|
60
60
|
# PRODUCTION: Gem needed for the Jekyll and J1 prod environment
|
data/lib/starter_web/_config.yml
CHANGED
|
@@ -53,7 +53,7 @@ environment: production
|
|
|
53
53
|
# ------------------------------------------------------------------------------
|
|
54
54
|
# Sets the build version of J1 Template Gem
|
|
55
55
|
#
|
|
56
|
-
version: 2021.0.
|
|
56
|
+
version: 2021.0.11
|
|
57
57
|
|
|
58
58
|
# version
|
|
59
59
|
# ------------------------------------------------------------------------------
|
|
@@ -448,8 +448,8 @@ plugins:
|
|
|
448
448
|
# - jekyll-gist
|
|
449
449
|
# - jekyll-sitemap
|
|
450
450
|
# - jekyll-redirect-from
|
|
451
|
+
# - jekyll-sass-converter
|
|
451
452
|
- j1-paginator
|
|
452
|
-
- jekyll-sass-converter
|
|
453
453
|
|
|
454
454
|
# ------------------------------------------------------------------------------
|
|
455
455
|
# JEKYLL FEED
|
|
@@ -159,24 +159,36 @@ settings:
|
|
|
159
159
|
- name: Roundtrip button
|
|
160
160
|
button:
|
|
161
161
|
text: Roundtrip
|
|
162
|
-
class: btn btn-raised btn-flex btn-md btn-primary mr-2 mb-
|
|
163
|
-
style: "min-width:
|
|
162
|
+
class: btn btn-raised btn-flex btn-md btn-primary mr-2 mb-3
|
|
163
|
+
style: "min-width: 12rem"
|
|
164
164
|
icon: eye
|
|
165
165
|
icon_color: md_white
|
|
166
166
|
icon_size: 24px
|
|
167
|
-
href: /pages/public/learn/
|
|
167
|
+
href: /pages/public/learn/roundtrip/present_images/
|
|
168
168
|
target:
|
|
169
169
|
|
|
170
170
|
- name: Kickstarter button
|
|
171
171
|
button:
|
|
172
172
|
text: Kickstart
|
|
173
|
-
class: btn btn-raised btn-flex btn-md btn-primary mr-2 mb-
|
|
174
|
-
style: "min-width:
|
|
173
|
+
class: btn btn-raised btn-flex btn-md btn-primary mr-2 mb-3
|
|
174
|
+
style: "min-width: 12rem"
|
|
175
175
|
icon: rocket
|
|
176
176
|
icon_color: md_white
|
|
177
177
|
icon_size: 24px
|
|
178
178
|
href: "https://jekyll.one/pages/public/learn/kickstarter/web_in_a_day/meet_and_greet/"
|
|
179
|
-
target:
|
|
179
|
+
target: _blank
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
- name: Download button
|
|
183
|
+
button:
|
|
184
|
+
text: Download
|
|
185
|
+
class: btn btn-raised btn-flex btn-md btn-primary mr-2 mb-3
|
|
186
|
+
style: "min-width: 12rem"
|
|
187
|
+
icon: download
|
|
188
|
+
icon_color: md_white
|
|
189
|
+
icon_size: 24px
|
|
190
|
+
href: "https://rubygems.org/gems/j1-template/versions/2021.0.11"
|
|
191
|
+
target: _blank
|
|
180
192
|
|
|
181
193
|
# - name: Patreon button
|
|
182
194
|
# button:
|
|
@@ -88,6 +88,14 @@ settings:
|
|
|
88
88
|
#
|
|
89
89
|
items:
|
|
90
90
|
|
|
91
|
+
- item: To Top
|
|
92
|
+
enabled: true
|
|
93
|
+
id: fam_scroll_to_top
|
|
94
|
+
color: md-green
|
|
95
|
+
event_handler: scroll_to_top
|
|
96
|
+
icon: step-backward-2
|
|
97
|
+
icon_properties: rotate-90
|
|
98
|
+
|
|
91
99
|
- item: Previous Section
|
|
92
100
|
enabled: true
|
|
93
101
|
id: fam_previous_section
|
|
@@ -148,6 +148,8 @@ tag::urls[]
|
|
|
148
148
|
:url-iframe-resizer--gh-repo: https://github.com/davidjbradshaw/iframe-resizer
|
|
149
149
|
|
|
150
150
|
:url-j1--home: https://jekyll.one/
|
|
151
|
+
:url-j1--download: https://rubygems.org/gems/j1-template/versions/2021.0.11
|
|
152
|
+
:url-j1-rubydoc--home: https://www.rubydoc.info/gems/j1-template/2021.0.11
|
|
151
153
|
:url-j1--preview: https://preview.jekyll.one/
|
|
152
154
|
|
|
153
155
|
:url-j1-web-in-a-day--meet-and-greet: https://jekyll.one/pages/public/learn/kickstarter/web_in_a_day/meet_and_greet/
|
|
@@ -356,6 +358,12 @@ tag::tags[]
|
|
|
356
358
|
:icon-battery--three-quarter: icon:battery-three-quarters[role="md-blue"]
|
|
357
359
|
:icon-battery--full: icon:battery-full[role="md-blue"]
|
|
358
360
|
|
|
361
|
+
:badge-j1--license: image:https://img.shields.io/github/license/jekyll-one-org/j1-template[GitHub, link="https://github.com/jekyll-one-org/j1-template/blob/master/LICENSE.md", window="_blank"]
|
|
362
|
+
:badge-j1--version-latest: image:https://badge.fury.io/rb/j1-template.svg[Gem Version, link="https://badge.fury.io/rb/j1-template", window="_blank"]
|
|
363
|
+
:badge-j1--downloads: image:https://img.shields.io/gem/dt/j1-template[Gem]
|
|
364
|
+
:badge-j1-gh--last-commit: image:https://img.shields.io/github/last-commit/jekyll-one-org/j1-template[GitHub last commit]
|
|
365
|
+
:badge-j1-gh--stars: image:https://img.shields.io/github/stars/jekyll-one-org/j1-template?style=social[GitHub Repo stars]
|
|
366
|
+
|
|
359
367
|
:char-emdash: —
|
|
360
368
|
:char-middot: ·
|
|
361
369
|
:char-dot: .
|
|
@@ -392,7 +400,7 @@ end::tables[]
|
|
|
392
400
|
// -----------------------------------------------------------------------------
|
|
393
401
|
tag::products[]
|
|
394
402
|
:j1-license: MIT License
|
|
395
|
-
:j1-version: 2021.0.
|
|
403
|
+
:j1-version: 2021.0.11
|
|
396
404
|
end::products[]
|
|
397
405
|
|
|
398
406
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
version="1.1"
|
|
15
15
|
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
|
16
16
|
sodipodi:docname="d1.svg"
|
|
17
|
-
inkscape:export-filename="C:\Temp\d10n-2021.0.
|
|
17
|
+
inkscape:export-filename="C:\Temp\d10n-2021.0.11\assets\images\modules\icons\d1\d1-256x256.png"
|
|
18
18
|
inkscape:export-xdpi="49.152"
|
|
19
19
|
inkscape:export-ydpi="49.152">
|
|
20
20
|
<title
|
|
@@ -135,6 +135,8 @@ The danger lies in their ability to track individuals' browsing histories.
|
|
|
135
135
|
Cookies generally can be classified by its *lifespan* and the *domain* to
|
|
136
136
|
which it belongs.
|
|
137
137
|
|
|
138
|
+
=== By Lifespan
|
|
139
|
+
|
|
138
140
|
Cookies classified by *lifespan* are either a:
|
|
139
141
|
|
|
140
142
|
Session cookie::
|
|
@@ -145,6 +147,8 @@ Persistent cookie::
|
|
|
145
147
|
A persistent cookie *remains* on the user's computer/device for a pre-defined
|
|
146
148
|
period of time.
|
|
147
149
|
|
|
150
|
+
=== By Domain
|
|
151
|
+
|
|
148
152
|
Cookies classified by the *domain* to which it belongs, are either of:
|
|
149
153
|
|
|
150
154
|
First-party cookie::
|
|
@@ -159,7 +163,6 @@ This can happen when the webpage references a files located outside its domain.
|
|
|
159
163
|
Third-party cookies let advertisers or analytics companies track the user's
|
|
160
164
|
browsing history across the web on *any* sites that contain their ads.
|
|
161
165
|
|
|
162
|
-
|
|
163
166
|
== Security aspects on using cookies
|
|
164
167
|
|
|
165
168
|
Without cookies the web would not work as it does today. However, since the
|
|
@@ -176,7 +179,7 @@ CRSF Page on {url-owasp-attacks--csrf}[OWASP, {browser-window--new}].
|
|
|
176
179
|
== How to control cookies
|
|
177
180
|
|
|
178
181
|
Users can take control, used or *not* used, or delete cookies. For more
|
|
179
|
-
details, see {url-about-cookies--home}[
|
|
182
|
+
details, see {url-about-cookies--home}[AboutCookies]. You can delete
|
|
180
183
|
all cookies that are already on your computer and you can set most
|
|
181
184
|
browsers to prevent them from being placed.
|
|
182
185
|
|
|
@@ -22,13 +22,7 @@ resource_options:
|
|
|
22
22
|
padding_bottom: 50
|
|
23
23
|
opacity: 0.5
|
|
24
24
|
slides:
|
|
25
|
-
- url: /assets/images/modules/attics/
|
|
26
|
-
alt: Photo by Aditya Joshi
|
|
27
|
-
alignY: 0.5
|
|
28
|
-
badge:
|
|
29
|
-
type: unsplash
|
|
30
|
-
author: Aditya Joshi
|
|
31
|
-
href: https://unsplash.com/@adijoshi11
|
|
25
|
+
- url: /assets/images/modules/attics/runner-1920x1200.jpg
|
|
32
26
|
---
|
|
33
27
|
|
|
34
28
|
// Page Initializer
|
|
@@ -39,6 +33,7 @@ resource_options:
|
|
|
39
33
|
// Set (local) page attributes here
|
|
40
34
|
// -----------------------------------------------------------------------------
|
|
41
35
|
// :page--attr: <attr-value>
|
|
36
|
+
:badges-enabled: false
|
|
42
37
|
|
|
43
38
|
// Load Liquid procedures
|
|
44
39
|
// -----------------------------------------------------------------------------
|
|
@@ -52,6 +47,10 @@ resource_options:
|
|
|
52
47
|
// Page content
|
|
53
48
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
54
49
|
|
|
50
|
+
ifeval::[{badges-enabled} == true]
|
|
51
|
+
{badge-j1--license} {badge-j1--version-latest} {badge-j1-gh--last-commit} {badge-j1--downloads}
|
|
52
|
+
endif::[]
|
|
53
|
+
|
|
55
54
|
// Include sub-documents
|
|
56
55
|
// -----------------------------------------------------------------------------
|
|
57
56
|
|
|
@@ -72,7 +72,8 @@ Framework*. See section <<Iconify Icons>> for more information.
|
|
|
72
72
|
|
|
73
73
|
== Material Design Icons
|
|
74
74
|
|
|
75
|
-
The primary icon-set for J1 Template is
|
|
75
|
+
The primary icon-set for J1 Template is
|
|
76
|
+
link:{mdi-home}[Material Design Icons, {browser-window--new}],
|
|
76
77
|
because it is extremely rich set providing more than 5900+ icons for the
|
|
77
78
|
current version (v5.9.55). From a design perspective, _MDI_ has an excellen
|
|
78
79
|
*Material Design* support an comes with the original icon set created by
|
|
@@ -80,8 +81,8 @@ _Google_ build-in.
|
|
|
80
81
|
|
|
81
82
|
_Material Design Icons_ (MDI) is a beneficial design resource for Web Design
|
|
82
83
|
that is based on _Google_'s Material Design. _MDI_ is a community-driven
|
|
83
|
-
project to create an increased number of icons based on _Google_'s official
|
|
84
|
-
and MD style specification.
|
|
84
|
+
project to create an increased number of icons based on _Google_'s official
|
|
85
|
+
repository and MD style specification.
|
|
85
86
|
|
|
86
87
|
.Material Design Icons
|
|
87
88
|
[cols="2a,3a,4a,^", options="header", width="100%", role="rtable mt-3"]
|
|
@@ -90,7 +91,9 @@ and MD style specification.
|
|
|
90
91
|
|
|
91
92
|
|1x
|
|
92
93
|
|no modifier set
|
|
93
|
-
|All icons can be found for preview at the
|
|
94
|
+
|All icons can be found for preview at the
|
|
95
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
96
|
+
page online. +
|
|
94
97
|
|
|
95
98
|
No modifiers +
|
|
96
99
|
[source, adoc, role="noclip"]
|
|
@@ -101,7 +104,9 @@ mdi:account[1x]
|
|
|
101
104
|
|
|
102
105
|
|3x
|
|
103
106
|
|no modifier set
|
|
104
|
-
|All icons can be found for preview at the
|
|
107
|
+
|All icons can be found for preview at the
|
|
108
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
109
|
+
page online. +
|
|
105
110
|
|
|
106
111
|
No modifiers +
|
|
107
112
|
[source, adoc, role="noclip"]
|
|
@@ -112,7 +117,9 @@ mdi:account[3x]
|
|
|
112
117
|
|
|
113
118
|
|5x
|
|
114
119
|
|no modifier set
|
|
115
|
-
|All icons can be found for preview at the
|
|
120
|
+
|All icons can be found for preview at the
|
|
121
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
122
|
+
page online. +
|
|
116
123
|
|
|
117
124
|
No modifiers +
|
|
118
125
|
[source, adoc, role="noclip"]
|
|
@@ -123,7 +130,9 @@ mdi:account[5x]
|
|
|
123
130
|
|
|
124
131
|
|5x
|
|
125
132
|
|`mdi-rotate-45`
|
|
126
|
-
|All icons can be found for preview at the
|
|
133
|
+
|All icons can be found for preview at the
|
|
134
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
135
|
+
page online. +
|
|
127
136
|
|
|
128
137
|
Rotate 45 degrees +
|
|
129
138
|
[source, adoc, role="noclip"]
|
|
@@ -134,7 +143,9 @@ mdi:account[5x mdi-rotate-45]
|
|
|
134
143
|
|
|
135
144
|
|5x
|
|
136
145
|
|`mdi-rotate-315`
|
|
137
|
-
|All icons can be found for preview at the
|
|
146
|
+
|All icons can be found for preview at the
|
|
147
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
148
|
+
page online. +
|
|
138
149
|
|
|
139
150
|
Rotate 315 degrees +
|
|
140
151
|
[source, adoc, role="noclip"]
|
|
@@ -146,7 +157,9 @@ mdi:account[5x mdi-rotate-315]
|
|
|
146
157
|
|5x
|
|
147
158
|
|`mdi-light` +
|
|
148
159
|
`mdi-flip-v`
|
|
149
|
-
|All icons can be found for preview at the
|
|
160
|
+
|All icons can be found for preview at the
|
|
161
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
162
|
+
page online. +
|
|
150
163
|
|
|
151
164
|
Colour set to (md) light-grey and flipped vertical +
|
|
152
165
|
[source, adoc, role="noclip"]
|
|
@@ -157,7 +170,9 @@ mdi:alert[5x mdi-light mdi-flip-v]
|
|
|
157
170
|
|
|
158
171
|
|5x
|
|
159
172
|
|`md-indigo`
|
|
160
|
-
|All icons can be found for preview at the
|
|
173
|
+
|All icons can be found for preview at the
|
|
174
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
175
|
+
page online. +
|
|
161
176
|
|
|
162
177
|
Colour set to (md) indigo +
|
|
163
178
|
[source, adoc, role="noclip"]
|
|
@@ -168,7 +183,9 @@ mdi:alert[5x md-indigo]
|
|
|
168
183
|
|
|
169
184
|
|5x
|
|
170
185
|
|`md-pink`
|
|
171
|
-
|All icons can be found for preview at the
|
|
186
|
+
|All icons can be found for preview at the
|
|
187
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
188
|
+
page online. +
|
|
172
189
|
|
|
173
190
|
Colour set to (md) pink +
|
|
174
191
|
[source, adoc, role="noclip"]
|
|
@@ -179,7 +196,9 @@ mdi:alert[5x md-pink]
|
|
|
179
196
|
|
|
180
197
|
|5x
|
|
181
198
|
|`mdi-spin`
|
|
182
|
-
|All icons can be found for preview at the
|
|
199
|
+
|All icons can be found for preview at the
|
|
200
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
201
|
+
page online. +
|
|
183
202
|
|
|
184
203
|
Added animation of type rotate (spin) +
|
|
185
204
|
[source, adoc, role="noclip"]
|
|
@@ -191,7 +210,9 @@ mdi:loading[5x mdi-spin]
|
|
|
191
210
|
|5x
|
|
192
211
|
|`md-red-900` +
|
|
193
212
|
`mdi-pulsed`
|
|
194
|
-
|All icons can be found for preview at the
|
|
213
|
+
|All icons can be found for preview at the
|
|
214
|
+
link:{url-material-design-icons--cheatsheet}[MDI Cheatsheet, {browser-window--new}]
|
|
215
|
+
page online. +
|
|
195
216
|
|
|
196
217
|
Colour set to (md) color dark-red and added animation of type pulsed +
|
|
197
218
|
[source, adoc, role="noclip"]
|
|
@@ -202,9 +223,10 @@ mdi:heart[5x md-red-900 mdi-pulsed]
|
|
|
202
223
|
|
|
203
224
|
|===============================================================================
|
|
204
225
|
|
|
205
|
-
NOTE: Using Material Design Icons with Asciidoc is quite easy as an inline
|
|
206
|
-
`mdi:` is available to place icons where ever you want. See more about
|
|
207
|
-
this in section
|
|
226
|
+
NOTE: Using Material Design Icons with Asciidoc is quite easy as an inline
|
|
227
|
+
macro `mdi:` is available to place icons where ever you want. See more about
|
|
228
|
+
this in section
|
|
229
|
+
link:{roundtrip-asciidoc-extensions}#icon-fonts[Asciidoc Extensions]
|
|
208
230
|
|
|
209
231
|
_MDI_ is a growing collection to allow designers and developers targeting
|
|
210
232
|
various platforms to download icons in the format, color and size they need
|
|
@@ -214,11 +236,6 @@ the official set created by _Google_.
|
|
|
214
236
|
_J1 Template_ supports the full set of _MDI_ for the Web (Webfont, WOFF). The
|
|
215
237
|
icon set is fully integrated and can be used out-of-the-box.
|
|
216
238
|
|
|
217
|
-
For MDI a preview is available to explore what can be done base on the
|
|
218
|
-
J1 implementation regarding sizes, colours, animations etc. Go for the
|
|
219
|
-
link:{previewer-mdi}[preview, {browser-window--new}] and check-out what's
|
|
220
|
-
possible using MDI font icons!
|
|
221
|
-
|
|
222
239
|
== FontAwesome Icons
|
|
223
240
|
|
|
224
241
|
_FontAwesome_ is a font and icon toolkit based on CSS. It was initially created
|
|
@@ -243,17 +260,17 @@ license only. For the Free version, only a subset of 900+ icons is available.
|
|
|
243
260
|
NOTE: The CSS styles for FontAwesome V5 has been extended for J1 Template to
|
|
244
261
|
the same classes (and their respective names) as for other Font Icon sets.
|
|
245
262
|
Already existing styles like `fa-flip-vertical` are available as `fa-flip-v`
|
|
246
|
-
as well.
|
|
247
|
-
link:{previewer-mdi}[preview, {browser-window--new}].
|
|
263
|
+
as well.
|
|
248
264
|
|
|
249
|
-
You can checkout what icons available at
|
|
250
|
-
{browser-window--new}].
|
|
251
|
-
|
|
252
|
-
differences needs to be
|
|
265
|
+
You can checkout what icons available at
|
|
266
|
+
link:{fontawesome-icons}[FontAwesome Icons, {browser-window--new}].
|
|
267
|
+
_FontAwesome_ V5 is fully integrated - no need for additional resources to
|
|
268
|
+
load. But in comparison to Version 4, a lot of differences needs to be
|
|
269
|
+
noticed.
|
|
253
270
|
|
|
254
271
|
If you haven't used V5 yet, it is highly recommended to visit the
|
|
255
|
-
link:{fontawesome-get-started}[Get started, {browser-window--new}] pages to
|
|
256
|
-
the basics and features and styles.
|
|
272
|
+
link:{fontawesome-get-started}[Get started, {browser-window--new}] pages to
|
|
273
|
+
learn the basics and features and styles.
|
|
257
274
|
|
|
258
275
|
With version V5 of _FontAwesome_, the icon set is split in two general parts:
|
|
259
276
|
|
|
@@ -261,8 +278,9 @@ With version V5 of _FontAwesome_, the icon set is split in two general parts:
|
|
|
261
278
|
* brand icons (icons for companies and brands) indicated by *FAB*
|
|
262
279
|
|
|
263
280
|
NOTE: Using FontAwesome with Asciidoc is quite easy as two inline macros
|
|
264
|
-
`fab:` and `fas:` are available to place icons where ever you want. See more
|
|
265
|
-
this in section
|
|
281
|
+
`fab:` and `fas:` are available to place icons where ever you want. See more
|
|
282
|
+
about this in section
|
|
283
|
+
link:{roundtrip-asciidoc-extensions}#icon-fonts[Asciidoc Extensions]
|
|
266
284
|
|
|
267
285
|
Find below examples of both and the use with J1 Template.
|
|
268
286
|
|
|
@@ -275,7 +293,8 @@ Find below examples of both and the use with J1 Template.
|
|
|
275
293
|
|
|
276
294
|
|2x
|
|
277
295
|
|no modifier set
|
|
278
|
-
|All icons can be found for preview at the
|
|
296
|
+
|All icons can be found for preview at the
|
|
297
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
279
298
|
|
|
280
299
|
No modifiers +
|
|
281
300
|
[source, adoc, role="noclip"]
|
|
@@ -286,7 +305,8 @@ fab:google[2x]
|
|
|
286
305
|
|
|
287
306
|
|5x
|
|
288
307
|
|`md-blue`
|
|
289
|
-
|All icons can be found for preview at the
|
|
308
|
+
|All icons can be found for preview at the
|
|
309
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
290
310
|
|
|
291
311
|
Color blue +
|
|
292
312
|
[source, adoc, role="noclip"]
|
|
@@ -307,7 +327,8 @@ fab:blogger[5x md-blue]
|
|
|
307
327
|
|
|
308
328
|
|1x
|
|
309
329
|
|no modifier set
|
|
310
|
-
|All icons can be found for preview at the
|
|
330
|
+
|All icons can be found for preview at the
|
|
331
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
311
332
|
|
|
312
333
|
No modifiers +
|
|
313
334
|
[source, adoc, role="noclip"]
|
|
@@ -318,7 +339,8 @@ fas:user[1x]
|
|
|
318
339
|
|
|
319
340
|
|3x
|
|
320
341
|
|no modifier set
|
|
321
|
-
|All icons can be found for preview at the
|
|
342
|
+
|All icons can be found for preview at the
|
|
343
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
322
344
|
|
|
323
345
|
No modifiers +
|
|
324
346
|
[source, adoc, role="noclip"]
|
|
@@ -329,7 +351,8 @@ fas:user[3x]
|
|
|
329
351
|
|
|
330
352
|
|5x
|
|
331
353
|
|no modifier set
|
|
332
|
-
|All icons can be found for preview at the
|
|
354
|
+
|All icons can be found for preview at the
|
|
355
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
333
356
|
|
|
334
357
|
No modifiers +
|
|
335
358
|
[source, adoc, role="noclip"]
|
|
@@ -340,7 +363,8 @@ fas:user[5x]
|
|
|
340
363
|
|
|
341
364
|
|5x
|
|
342
365
|
|`fa-rotate-90`
|
|
343
|
-
|All icons can be found for preview at the
|
|
366
|
+
|All icons can be found for preview at the
|
|
367
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
344
368
|
|
|
345
369
|
Rotate 90 degrees +
|
|
346
370
|
[source, adoc, role="noclip"]
|
|
@@ -352,7 +376,8 @@ fas:user[5x fa-rotate-90]
|
|
|
352
376
|
|5x
|
|
353
377
|
|`mdi-light` +
|
|
354
378
|
`fa-flip-v`
|
|
355
|
-
|All icons can be found for preview at the
|
|
379
|
+
|All icons can be found for preview at the
|
|
380
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
356
381
|
|
|
357
382
|
Colour set to MDI Light (Grey) and flipped vertical +
|
|
358
383
|
[source, adoc, role="noclip"]
|
|
@@ -363,7 +388,8 @@ fas:exclamation-triangle[5x mdi-light fa-flip-v]
|
|
|
363
388
|
|
|
364
389
|
|5x
|
|
365
390
|
|`md-indigo`
|
|
366
|
-
|All icons can be found for preview at the
|
|
391
|
+
|All icons can be found for preview at the
|
|
392
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
367
393
|
|
|
368
394
|
Colour set to MDI Indigo +
|
|
369
395
|
[source, adoc, role="noclip"]
|
|
@@ -374,7 +400,8 @@ fas:alert[5x md-indigo]
|
|
|
374
400
|
|
|
375
401
|
|5x
|
|
376
402
|
|`md-pink`
|
|
377
|
-
|All icons can be found for preview at the
|
|
403
|
+
|All icons can be found for preview at the
|
|
404
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
378
405
|
|
|
379
406
|
Colour set to MDI Pink +
|
|
380
407
|
[source, adoc, role="noclip"]
|
|
@@ -385,7 +412,8 @@ fas:alert[5x md-pink]
|
|
|
385
412
|
|
|
386
413
|
|5x
|
|
387
414
|
|`fa-spin`
|
|
388
|
-
|All icons can be found for preview at the
|
|
415
|
+
|All icons can be found for preview at the
|
|
416
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
389
417
|
|
|
390
418
|
Added animation of type Rotate (Spin) +
|
|
391
419
|
[source, adoc, role="noclip"]
|
|
@@ -397,7 +425,8 @@ fas:circle-notch[5x fa-spin]
|
|
|
397
425
|
|5x
|
|
398
426
|
|`md-red-900` +
|
|
399
427
|
`md-red-900` `fa-pulsed`
|
|
400
|
-
|All icons can be found for preview at the
|
|
428
|
+
|All icons can be found for preview at the
|
|
429
|
+
link:{fontawesome-icons}[FA Gallery, {browser-window--new}] page online. +
|
|
401
430
|
|
|
402
431
|
Colour set to MDI Dark Red and added animation of type Pulsed +
|
|
403
432
|
[source, adoc, role="noclip"]
|
|
@@ -438,7 +467,8 @@ Find some examples below.
|
|
|
438
467
|
|
|
439
468
|
|3x
|
|
440
469
|
|no modifier set
|
|
441
|
-
|All icons can be found for preview at
|
|
470
|
+
|All icons can be found for preview at
|
|
471
|
+
link:{iconify-brand-icons}[SVG Logos, {browser-window--new}] page online. +
|
|
442
472
|
|
|
443
473
|
No modifiers +
|
|
444
474
|
[source, adoc, role="noclip"]
|
|
@@ -449,7 +479,8 @@ iconify:logos:opensource[3x]
|
|
|
449
479
|
|
|
450
480
|
|3x
|
|
451
481
|
|no modifier set
|
|
452
|
-
|All icons can be found for preview at
|
|
482
|
+
|All icons can be found for preview at
|
|
483
|
+
link:{iconify-brand-icons}[SVG Logos, {browser-window--new}] page online. +
|
|
453
484
|
|
|
454
485
|
No modifiers +
|
|
455
486
|
[source, adoc, role="noclip"]
|
|
@@ -467,7 +498,8 @@ iconify:logos:asciidoctor[3x]
|
|
|
467
498
|
|
|
468
499
|
|3x
|
|
469
500
|
|no modifier set
|
|
470
|
-
|All icons can be found for preview at
|
|
501
|
+
|All icons can be found for preview at
|
|
502
|
+
link:{iconify-medical-icons}[Medical Icons, {browser-window--new}] page online. +
|
|
471
503
|
|
|
472
504
|
No modifiers +
|
|
473
505
|
[source, adoc, role="noclip"]
|
|
@@ -478,7 +510,8 @@ iconify:medical-icon:i-ear-nose-throat[3x]
|
|
|
478
510
|
|
|
479
511
|
|5x
|
|
480
512
|
|`md-red-900`
|
|
481
|
-
|All icons can be found for preview at
|
|
513
|
+
|All icons can be found for preview at
|
|
514
|
+
link:{iconify-medical-icons}[Medical Icons, {browser-window--new}] page online. +
|
|
482
515
|
|
|
483
516
|
Color (md) red +
|
|
484
517
|
[source, adoc, role="noclip"]
|