j1-template 2022.0.12 → 2022.0.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/assets/themes/j1/adapter/js/advertising.js +65 -44
  3. data/assets/themes/j1/adapter/js/algolia.js +9 -9
  4. data/assets/themes/j1/adapter/js/analytics.js +46 -24
  5. data/assets/themes/j1/adapter/js/asciidoctor.js +9 -9
  6. data/assets/themes/j1/adapter/js/attic.js +9 -1
  7. data/assets/themes/j1/adapter/js/bmd.js +9 -10
  8. data/assets/themes/j1/adapter/js/carousel.js +9 -9
  9. data/assets/themes/j1/adapter/js/clipboard.js +9 -9
  10. data/assets/themes/j1/adapter/js/comments.js +31 -10
  11. data/assets/themes/j1/adapter/js/cookieConsent.js +73 -80
  12. data/assets/themes/j1/adapter/js/fab.js +10 -10
  13. data/assets/themes/j1/adapter/js/framer.js +59 -58
  14. data/assets/themes/j1/adapter/js/j1.js +166 -103
  15. data/assets/themes/j1/adapter/js/justifiedGallery.js +11 -10
  16. data/assets/themes/j1/adapter/js/justifiedGalleryCustomizer.js +9 -9
  17. data/assets/themes/j1/adapter/js/lightbox.js +11 -4
  18. data/assets/themes/j1/adapter/js/logger.js +10 -3
  19. data/assets/themes/j1/adapter/js/mmenu.js +9 -9
  20. data/assets/themes/j1/adapter/js/navigator.js +9 -9
  21. data/assets/themes/j1/adapter/js/quicksearch.js +9 -9
  22. data/assets/themes/j1/adapter/js/rouge.js +9 -9
  23. data/assets/themes/j1/adapter/js/rtable.js +9 -9
  24. data/assets/themes/j1/adapter/js/rtextResizer.js +9 -9
  25. data/assets/themes/j1/adapter/js/scroller.js +12 -7
  26. data/assets/themes/j1/adapter/js/themer.js +11 -2
  27. data/assets/themes/j1/adapter/js/toccer.js +9 -9
  28. data/assets/themes/j1/adapter/js/translator.js +13 -16
  29. data/assets/themes/j1/core/css/vendor.css +6 -1
  30. data/assets/themes/j1/core/css/vendor.min.css +1 -1
  31. data/assets/themes/j1/core/js/template.js +4 -3
  32. data/assets/themes/j1/core/js/template.min.js +1 -1
  33. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  34. data/assets/themes/j1/modules/advertising/js/google/adInitializer.js +14 -4
  35. data/exe/j1 +31 -11
  36. data/lib/j1/commands/generate.rb +37 -36
  37. data/lib/j1/commands/help.rb +35 -0
  38. data/lib/j1/commands/patch.rb +81 -0
  39. data/lib/j1/commands/reset.rb +36 -0
  40. data/lib/j1/commands/setup.rb +126 -0
  41. data/lib/j1/commands/site.rb +27 -0
  42. data/lib/j1/external.rb +1 -1
  43. data/lib/j1/utils/exec_until_trap.rb +28 -0
  44. data/lib/j1/utils.rb +31 -0
  45. data/lib/j1/version.rb +1 -1
  46. data/lib/starter_web/Gemfile +1 -1
  47. data/lib/starter_web/_config.yml +1 -1
  48. data/lib/starter_web/_data/layouts/home.ads.yml +262 -0
  49. data/lib/starter_web/_data/layouts/home.no-ads.yml +262 -0
  50. data/lib/starter_web/_data/layouts/home.yml +1 -1
  51. data/lib/starter_web/_data/modules/advertising.yml +1 -12
  52. data/lib/starter_web/_data/modules/analytics.yml +1 -1
  53. data/lib/starter_web/_data/modules/cookies.yml +5 -2
  54. data/lib/starter_web/_data/modules/defaults/advertising.yml +7 -8
  55. data/lib/starter_web/_data/modules/defaults/comments.yml +4 -4
  56. data/lib/starter_web/_data/modules/defaults/cookies.yml +106 -36
  57. data/lib/starter_web/_data/modules/defaults/themer.yml +3 -2
  58. data/lib/starter_web/_data/modules/themer.yml +2 -1
  59. data/lib/starter_web/_includes/attributes.asciidoc +1 -1
  60. data/lib/starter_web/_plugins/lunr_index.rb +1 -1
  61. data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +1 -1
  62. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +1 -1
  63. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.ads.asciidoc +1 -1
  64. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.comments.asciidoc +1 -1
  65. data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-site-generators.adoc +1 -1
  66. data/lib/starter_web/collections/posts/public/featured/_posts/2021-03-03-about-j1.adoc +1 -1
  67. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-01-post-wiki-series.adoc +1 -1
  68. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-02-post-wiki-series.adoc +1 -1
  69. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-03-post-wiki-series.adoc +1 -1
  70. data/lib/starter_web/index.html +0 -3
  71. data/lib/starter_web/package.json +5 -1
  72. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/000_intro.adoc +1 -1
  73. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/100_converter.adoc +1 -1
  74. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/200_themes.adoc +1 -1
  75. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/documentation.adoc +1 -4
  76. data/lib/starter_web/pages/public/asciidoc_skeletons/multi-document/multi.adoc +1 -4
  77. data/lib/starter_web/pages/public/asciidoc_skeletons/simple-document/simple.adoc +1 -4
  78. data/lib/starter_web/pages/public/learn/roundtrip/400_asciidoc_extensions.adoc +7 -7
  79. data/lib/starter_web/pages/public/manuals/dropdown-help.adoc +23 -2
  80. data/lib/starter_web/pages/public/previewer/preview_bootstrap_theme.adoc +100 -166
  81. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  82. data/lib/starter_web/utilsrv/package.json +1 -1
  83. metadata +11 -3
@@ -31,7 +31,78 @@ defaults:
31
31
  enabled: true
32
32
 
33
33
  # ----------------------------------------------------------------------------
34
- # Settings/Attributes
34
+ # Switches
35
+ #
36
+ # checkCookies
37
+ # --------------------------------------------------------------------------
38
+ # Check if cookies are created and available to the browser. If the
39
+ # cookie attributes does NOT allow to create and|or access on cookies,
40
+ # setting-up a page will fail.
41
+ # For testing sites deplayed on the Internet, it is recommended to enable
42
+ # checks on cookies to issue an error page (HTML 445) if access on cookies
43
+ # has failed for some reason. This will prevent severe failures and|or
44
+ # endless loops accessing a page on missing cookies or invalid cookie
45
+ # settings.
46
+ #
47
+ # values: [false|true]
48
+ # default: false
49
+ #
50
+ # encryptCookiesOnHttp (currently NOT supported)
51
+ # --------------------------------------------------------------------------
52
+ # If a website does not use encryption over the HTTPS protocol, the
53
+ # content written by J1 to cookies can be (AES) encrypted to prevent
54
+ # unwanted manipulation.
55
+ #
56
+ # NOTE: For sites deployed on the Internet, it is highly recommended
57
+ # to use encryption (HTTPS protocol) for all sites to prevent
58
+ # (man-in-the-middle) attacks. If this is NOT possible, at least
59
+ # cookies should be encrypted to prevent attacks based on manipulated
60
+ # contents.
61
+ #
62
+ # NOTE: Encrpytion on cookies is only enabled, if an unsecure connection
63
+ # over the HTTP protocol is detected. This is for performance reasons
64
+ # to not do time consuming calculations if a site is already
65
+ # encrypted.
66
+ #
67
+ # values: [false|true]
68
+ # default: false
69
+ #
70
+ # expireCookiesOnRequiredOnly
71
+ # --------------------------------------------------------------------------
72
+ # J1 uses permanent cookies to store user-related data and process stored
73
+ # data on subsequent visits. permanent cookies require consent, which is
74
+ # automatically displayed as a cookie banner on the first visit.
75
+ #
76
+ # If the switch 'expireCookiesOnRequiredOnly' is set to 'true', all
77
+ # permanent cookies created by J1 are rewritten to session cookies if
78
+ # the consent for advanced cookies (type personalization or analysis) has
79
+ # been denied.
80
+ # The browser automatically deletes all session cookies when all browser
81
+ # sessions (windows/tabs) are closed. Since all session cookies are deleted
82
+ # automatically, this will result in a cookie consent dialog being
83
+ # displayed again on visitors next visit.
84
+ #
85
+ # NOTE: It is recommended that permanent J1 cookies be rewritten to
86
+ # session cookies for visitors who reject advanced cookies. In
87
+ # addition, session cookies improve privacy policy compliance and
88
+ # increase the chance all cookies are accepted on return.
89
+ #
90
+ # NOTE: Make sure that your website complies with applicable privacy
91
+ # regulations, such as the GDPR (DSGVO) or California California
92
+ # Consumer Privacy Act (CCPA) by using the cookie banner provided
93
+ # by J1 Template.
94
+ #
95
+ # values: [false|true]
96
+ # default: true
97
+ #
98
+ # ----------------------------------------------------------------------------
99
+ #
100
+ checkCookies: false
101
+ encryptCookiesOnHttp: false
102
+ expireCookiesOnRequiredOnly: true
103
+
104
+ # ----------------------------------------------------------------------------
105
+ # Attributes
35
106
  #
36
107
  # path
37
108
  # --------------------------------------------------------------------------
@@ -44,19 +115,19 @@ defaults:
44
115
  # domain
45
116
  # --------------------------------------------------------------------------
46
117
  # Switch 'domain' controls if the value for the attribute 'domain' is
47
- # used (= auto|domain) or NOT used (false). If 'auto' is given, the domain
48
- # is calculated from the hostname. Otherwise domain is treates as domain
49
- # to be used.
50
- # If the switch 'domain' is to 'false', the attribute 'domain' is
51
- # automatically set to the (fully qualified) hostname and all subdomains
52
- # are EXCLUDED from accessing the cookies.
118
+ # used (= auto|domain_string) or NOT used (false). If 'auto' is given,
119
+ # the domain is calculated from the hostname found in URL of the current
120
+ # page. Otherwise 'domain_string' is treates as domain to be used.
121
+ # If the switch 'domain' is set to 'false', the attribute 'domain' is
122
+ # not set, but automatically set by the browser to the (fully qualified)
123
+ # hostname and all subdomains are excluded from accessing the cookies.
53
124
  #
54
125
  # NOTE: Be carefull setting switch 'domain' to auto. For sites deployed
55
126
  # to hosts of public domain providers like Netlify (netlify.app),
56
127
  # this will open the access on cookies to ALL hosts (subdomains)!
57
128
  # See 'same_site'.
58
129
  #
59
- # values: [false|auto|domain]
130
+ # values: [false|auto|domain_string]
60
131
  # default: false
61
132
  #
62
133
  # expires
@@ -70,54 +141,53 @@ defaults:
70
141
  #
71
142
  # same_site
72
143
  # --------------------------------------------------------------------------
73
- # Lax: Sent cookie for all requests (including subdomains) but NOT
74
- # in cross-site requests.
75
- # Strict: The cookie is only sent to the site where it originated
76
- # (excluding subdomains) but NOT in cross-site requests.
77
- # None: Send cookies in cross-site requests if Secure=true is
78
- # enabled (HTTPS requests only)
79
- #
80
- # NOTE:
81
- # Specify SameSite=Strict or SameSite=Lax if the cookie should
82
- # NOT be sent in cross-site requests.
83
- # NOTE:
84
- # Specify SameSite=None and Secure=true if the cookie should be sent
85
- # in cross-site requests. This enables third-party use.
144
+ # Lax: Sent cookie for all requests, including subdomains, but
145
+ # not in cross-site requests.
146
+ # Strict: The cookie is only sent to the site where it originated,
147
+ # excluding subdomains, but not in cross-site requests.
148
+ # None: Send cookies in cross-site requests if the attribute
149
+ # 'secure' is enabled. Note, the value 'None' can be only
150
+ # used for HTTPS requests.
86
151
  #
87
152
  # values: [Strict|Lax|None]
88
- # default: Lax
153
+ # default: Strict
89
154
  #
90
155
  # http_only
91
156
  # --------------------------------------------------------------------------
92
- # prevent access to cookie values via JavaScript
157
+ # Prevent access on cookies via JavaScript (client-side). Note, for
158
+ # client-side processing of cookies, like J1 Modules, never change
159
+ # the attribute to 'true'.
160
+ #
161
+ # NOTE: The attribute 'http_only' is only used for web applications to
162
+ # store sensitive private user data (like passwords, account data) to
163
+ # to cookies. Only 'server-sided' web applications will be able to
164
+ # read cookies secured by 'http_only'.
93
165
  #
94
166
  # values: [false|true]
95
167
  # default: false
96
168
  #
97
169
  # secure
98
170
  # --------------------------------------------------------------------------
99
- # Cookies are only sent to the server with an encrypted request over
100
- # the HTTPS protocol
171
+ # If set to 'true', cookies are only sent to the server with an encrypted
172
+ # request over the HTTPS protocol. If set to 'auto', the attribute is
173
+ # ENABLED (set to 'true') automatically, if a secure connection (HTTPS)
174
+ # is detected.
101
175
  #
102
- # values: [false|true]
103
- # default: false
176
+ # NOTE: For sites deployed on the Internet, it is highly recommended
177
+ # to use encryption (HTTPS protocol) for all sites to prevent
178
+ # (man-in-the-middle) attacks (and manipulation on cookies).
104
179
  #
105
- # check_cookies
106
- # --------------------------------------------------------------------------
107
- # Check if cookies created/available
108
- #
109
- # values: [false|true]
110
- # default: true
180
+ # values: [auto|false|true]
181
+ # default: auto
111
182
  #
112
183
  # ----------------------------------------------------------------------------
113
184
  #
114
- check_cookies: true
115
185
  path: /
116
186
  domain: false
117
187
  expires: 365
118
- same_site: Lax
188
+ same_site: Strict
189
+ secure: auto
119
190
  http_only: false
120
- secure: false
121
191
 
122
192
  # ------------------------------------------------------------------------------
123
193
  # END config
@@ -145,10 +145,11 @@ defaults:
145
145
  #
146
146
  enabled: false
147
147
 
148
+ debug: false
149
+ saveToCookie: true
150
+
148
151
  reloadPageOnChange: false # reload current page, if theme has been changed
149
152
  retries: 30 # retry to load theme list from API
150
- saveToCookie: true
151
- debug: false
152
153
  preview_page: /pages/public/previewer/theme/
153
154
  menu_icon_family: MDI
154
155
  menu_icon_color: "#9E9E9E"
@@ -27,8 +27,9 @@ description:
27
27
  settings:
28
28
  enabled: true
29
29
 
30
- saveToCookie: true
31
30
  debug: false
31
+ saveToCookie: true
32
+
32
33
 
33
34
  # ------------------------------------------------------------------------------
34
35
  # END config
@@ -437,7 +437,7 @@ end::tables[]
437
437
  // -----------------------------------------------------------------------------
438
438
  tag::products[]
439
439
  :j1--license: MIT License
440
- :j1--version: 2022.0.12
440
+ :j1--version: 2022.0.16
441
441
  :j1--site-name: Jekyll One
442
442
  end::products[]
443
443
 
@@ -364,6 +364,6 @@ end
364
364
 
365
365
  module Jekyll
366
366
  module J1LunrSearch
367
- VERSION = '2022.0.12'
367
+ VERSION = '2022.0.16'
368
368
  end
369
369
  end
@@ -9,7 +9,7 @@ tags: [ J1, Jekyll ]
9
9
  image: /assets/images/modules/attics/katie-moum-1920x1280.jpg
10
10
 
11
11
  regenerate: false
12
- resources: []
12
+ resources: [ animate ]
13
13
  resource_options:
14
14
  - attic:
15
15
  opacity: 0.5
@@ -9,7 +9,7 @@ image: /assets/images/modules/attics/cookies-19
9
9
 
10
10
  regenerate: false
11
11
 
12
- resources: []
12
+ resources: [ animate ]
13
13
  resource_options:
14
14
  - attic:
15
15
  padding_top: 400
@@ -9,7 +9,7 @@ image: /assets/images/modules/attics/cookies-19
9
9
 
10
10
  regenerate: false
11
11
 
12
- resources: [ advertising ]
12
+ resources: [ animate, advertising ]
13
13
  resource_options:
14
14
  - attic:
15
15
  padding_top: 400
@@ -9,7 +9,7 @@ image: /assets/images/modules/attics/cookies-19
9
9
 
10
10
  regenerate: false
11
11
 
12
- resources: [ comments ]
12
+ resources: [ animate, comments ]
13
13
  resource_options:
14
14
  - attic:
15
15
  padding_top: 400
@@ -9,7 +9,7 @@ image: /assets/images/modules/attics/machine-ge
9
9
 
10
10
  regenerate: false
11
11
 
12
- resources: [ lightbox ]
12
+ resources: [ animate, lightbox ]
13
13
  resource_options:
14
14
  - attic:
15
15
  padding_top: 400
@@ -11,7 +11,7 @@ fab_menu_id: default
11
11
 
12
12
  regenerate: false
13
13
 
14
- resources: []
14
+ resources: [ animate ]
15
15
  resource_options:
16
16
  - attic:
17
17
  padding_top: 400
@@ -9,7 +9,7 @@ series: wiki-series
9
9
  image: /assets/images/collections/blog/wikipedia/minneapolis.1200x400.jpg
10
10
  regenerate: false
11
11
 
12
- resources: []
12
+ resources: [ animate ]
13
13
  resource_options:
14
14
  - toccer:
15
15
  collapseDepth: 3
@@ -10,7 +10,7 @@ image: /assets/images/collections/blog/wikipedi
10
10
 
11
11
  regenerate: false
12
12
 
13
- resources: []
13
+ resources: [ animate ]
14
14
  resource_options:
15
15
  - toccer:
16
16
  collapseDepth: 3
@@ -10,7 +10,7 @@ image: /assets/images/collections/blog/wikipedi
10
10
 
11
11
  regenerate: false
12
12
 
13
- resources: []
13
+ resources: [ animate ]
14
14
  resource_options:
15
15
  - toccer:
16
16
  collapseDepth: 3
@@ -22,9 +22,6 @@ robots:
22
22
  personalization: false
23
23
  exclude_from_search: false
24
24
 
25
- analytics: true
26
- comments: false
27
-
28
25
  fab_menu_id: default
29
26
  scrollbar: false
30
27
  toc: false
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "j1_starter",
4
- "version": "2022.0.12",
4
+ "version": "2022.0.16",
5
5
  "description": "J1 Template Starter Web",
6
6
  "homepage": "https://your.site",
7
7
  "author": {
@@ -129,6 +129,10 @@
129
129
  "site:jekyll": "echo Startup the site .. && cross-env SINATRA_ACTIVESUPPORT_WARNING=false bundle exec jekyll s --incremental --livereload --livereload-port $npm_package_jekyll_opt_livereload_port --open",
130
130
  "site:utilsrv": "npm --prefix ./utilsrv --silent run utilsrv",
131
131
 
132
+ "j1-site": "run-p -s j1-site:*",
133
+ "j1-site:jekyll": "bundle exec jekyll s --incremental --livereload --open",
134
+ "j1-site:utilsrv": "npm --prefix ./utilsrv --silent run utilsrv",
135
+
132
136
  "bump": "run-s -s ver && run-s -s bump:* && run-s -s ver",
133
137
  "ver": "cross-var cross-env echo \"Project version: $npm_package_version\"",
134
138
  "bump:project": "cross-var cross-env npm version $npm_package_config_bumplevel",
@@ -21,7 +21,7 @@ robots:
21
21
  permalink: /pages/public/skeleton/documentation/000_intro/
22
22
  regenerate: false
23
23
 
24
- resources: []
24
+ resources: [ animate, clipboard, lightbox, rouge ]
25
25
  resource_options:
26
26
  - toccer:
27
27
  collapseDepth: 4
@@ -10,7 +10,7 @@ tags: [ Asciidoctor, PDF, Converter ]
10
10
  permalink: /pages/public/skeleton/documentation/100_converter/
11
11
  regenerate: false
12
12
 
13
- resources: [ animate, lightbox, clipboard, rouge ]
13
+ resources: [ animate, clipboard, lightbox, rouge ]
14
14
  resource_options:
15
15
  - toccer:
16
16
  collapseDepth: 2
@@ -9,7 +9,7 @@ tags: [ Asciidoctor, PDF, Converter ]
9
9
  permalink: /pages/public/skeleton/documentation/200_themes/
10
10
  regenerate: false
11
11
 
12
- resources: [ animate, lightbox, clipboard, rouge ]
12
+ resources: [ animate, clipboard, lightbox, rouge ]
13
13
  resource_options:
14
14
  - toccer:
15
15
  collapseDepth: 2
@@ -14,9 +14,6 @@ description: >
14
14
  categories: [ Knowledge ]
15
15
  tags: [ Asciidoc, Skeleton, Documentation, PDF ]
16
16
 
17
- sitemap: false
18
- comments: false
19
-
20
17
  robots:
21
18
  index: false
22
19
  follow: false
@@ -24,7 +21,7 @@ robots:
24
21
  permalink: /pages/public/skeleton/documentation/
25
22
  regenerate: false
26
23
 
27
- resources: [ clipboard, lightbox, rouge, animate ]
24
+ resources: [ animate, clipboard, lightbox, rouge ]
28
25
  resource_options:
29
26
  - toccer:
30
27
  collapseDepth: 4
@@ -12,9 +12,6 @@ description: >
12
12
  categories: [ Knowledge ]
13
13
  tags: [ Asciidoc, Skeleton, Document ]
14
14
 
15
- sitemap: false
16
- comments: false
17
-
18
15
  robots:
19
16
  index: false
20
17
  follow: false
@@ -22,7 +19,7 @@ robots:
22
19
  permalink: /pages/public/skeleton/multi/
23
20
  regenerate: false
24
21
 
25
- resources: [ lightbox, clipboard, rouge, animate ]
22
+ resources: [ animate, clipboard, lightbox, rouge ]
26
23
  resource_options:
27
24
  - toccer:
28
25
  collapseDepth: 4
@@ -11,9 +11,6 @@ description: >
11
11
  categories: [ Knowledge ]
12
12
  tags: [ Asciidoc, Skeleton, Document ]
13
13
 
14
- sitemap: false
15
- comments: false
16
-
17
14
  robots:
18
15
  index: false
19
16
  follow: false
@@ -21,7 +18,7 @@ robots:
21
18
  permalink: /pages/public/skeleton/simple/
22
19
  regenerate: false
23
20
 
24
- resources: [ clipboard, rouge, animate ]
21
+ resources: [ animate, clipboard, lightbox, rouge ]
25
22
  resource_options:
26
23
  - toccer:
27
24
  collapseDepth: 4
@@ -72,7 +72,7 @@ valuable extensions to the Markup language Asciidoc to the Markup language
72
72
  Asciidoc is made especially for documents of the Jekyll content type pages
73
73
  (but can be used for posts or collections as well).
74
74
 
75
- == Asciidoc Code
75
+ == Asciidoc Result Extension
76
76
 
77
77
  J1 Template adds a simple Javascript based on the `View Result Extension` to
78
78
  any `listingblock`. The extension adds an interactive toggle button `VIEW`
@@ -92,7 +92,7 @@ Asciidoc code and how the resulting (HTML) code would look alike.
92
92
 
93
93
  [.result]
94
94
  ====
95
- displayed till clicked, but closed on second click
95
+ displayed till clicked, but closed on second click (toggle)
96
96
  ====
97
97
 
98
98
  == Asciidoc Admonitions
@@ -268,7 +268,7 @@ flag:country[style, size, modifier] <1> <2> <3> <4>
268
268
  <4> The `modifier` can be used to add individual CSS classes e.g. for
269
269
  BS styles for margin setting and other
270
270
 
271
- .Click on _view result_ to see how it's looks alike
271
+ .Click on button `VIEW` to see how it's looks alike
272
272
  [source, prometheus, role="noclip"]
273
273
  ----
274
274
  flag:de[rectangle, 2x, ml-3 mr-2 mb-2] Germany (rectangle) +
@@ -367,7 +367,7 @@ mdi:icon_name[icon_size, modifier] <1> <2> <3>
367
367
  <3> The `modifier` can be used to set the e.g the color (md-blue), an
368
368
  animation (fa-pulsed) or the orientation (fa-rotate-45)
369
369
 
370
- .Click on _view result_ to see how it's looks alike
370
+ .Click on button `VIEW` to see how it's looks alike
371
371
  [source, prometheus, role="noclip"]
372
372
  ----
373
373
  mdi:home[2x, mdi-pulsed ml-3 mr-2 mb-2] Symbol icon (pulsed) +
@@ -401,7 +401,7 @@ fas:icon_name[icon_size, modifier] <1> <2> <3>
401
401
  <3> The `modifier` can be used to set e.g the color (md-blue), an
402
402
  animation (fa-pulsed) or the orientation (fa-rotate-45) of an icon
403
403
 
404
- .Click on _view result_ to see how it's looks alike
404
+ .Click on button `VIEW` to see how it's looks alike
405
405
  [source, prometheus, role="noclip"]
406
406
  ----
407
407
  fas:home[2x, fa-pulsed ml-2 mr-2 mb-2] Solid icon (pulsed) +
@@ -436,7 +436,7 @@ iconify:icon_name[icon_size, modifier] <1> <2> <3>
436
436
  <3> The `modifier` can be used to set e.g the color (md-blue) or additional
437
437
  positioning classes for margings and padding
438
438
 
439
- .Click on _view result_ to see how it's looks alike
439
+ .Click on button `VIEW` to see how it's looks alike
440
440
  [source, prometheus, role="noclip"]
441
441
  ----
442
442
  iconify:logos:opensource[2x, ml-4 mr-2 mb-2] Brand icon OpenSource +
@@ -478,7 +478,7 @@ emoji:icon_name[icon_size] <1> <2>
478
478
  link:{url-previewer--emoji}[Twitter Emoji's]
479
479
  <2> The `icon_size` attribute can be one of: `xs`, `sm`, `lg` and `1x` to `5x`
480
480
 
481
- .Click on _view result_ to see how it's look alike
481
+ .Click on button `VIEW` to see how it's look alike
482
482
  [source, prometheus, role="noclip"]
483
483
  ----
484
484
  This is an example of how you can emoji:heart[2x, pulsed mt-1] Asciidoctor
@@ -8,16 +8,37 @@ description: >
8
8
  the "Starter web", a general-purpose scaffold to be modified
9
9
  for your needs.
10
10
 
11
+ keywords: >
12
+ msdropdown, manual, usage, attribute, callback, option,
13
+ opensource, free, load, download, start, starter, example,
14
+ high, easy, use, secure, encrypt, standard, popular,
15
+ generate, develop, create, learn, distribute, publish, deploy,
16
+ beginner, advanced, expert, student, learner, writer, reader, visitor
17
+ framework, toolkit, integration, extension, module, api,
18
+ dynamic, static, generator, client, server, internet, local, localhost
19
+ page, web, website, webdesign, material, design, responsive,
20
+ javascript, nodejs, ruby, windows, linux, osx, mac, os,
21
+ http, https, html, html5, css, scss, style,
22
+ browser, firefox, chrome, edge, opera, safari,
23
+ configuration, generator, navigation, menu, dropdown, fab, action, button
24
+ application, interface, provider, api, repository,
25
+ cookie, language, translation, gdpr, dsgvo, privacy,
26
+ asciidoc, aciidoctor, bootstrap, jekyll, liquid,
27
+ hyvor, disqus, git, github, netlify, heroku, apple, microsoft,
28
+ provider, service, internet, support,
29
+ google, analytics, advertising, search, console, silverlight, score,
30
+ j1, template, jekyllone, comment
31
+
11
32
  categories: [ Manuals ]
12
33
  tags: [ MsDropdown ]
13
34
 
14
35
  comments: true
15
36
  fab_menu_id: page_ctrl_simple
16
37
 
17
- permalink: /pages/public/manuals/msDropdown/
38
+ permalink: /pages/public/manuals/msdropdown/
18
39
  regenerate: false
19
40
 
20
- resources: [ animate, clipboard, rouge ]
41
+ resources: [ clipboard, comments, rouge, animate ]
21
42
  resource_options:
22
43
  - attic:
23
44
  padding_top: 400