j1m_nav 0.0.1
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 +7 -0
- data/LICENSE.md +21 -0
- data/README.md +41 -0
- data/_data/modules/default/j1_nav-0.0.1/j1_bootsnav.yml +337 -0
- data/_data/modules/default/j1_nav-0.0.1/j1_bootsnav_mainmenu.yml +266 -0
- data/_data/resources/default/j1_nav-0.0.1/resource.yml +25 -0
- data/_includes/themes/j1/modules/adapter/bootsnav/bootsnav.html +102 -0
- data/_includes/themes/j1/modules/adapter/bootsnav/procedures/mainmenu.proc +268 -0
- data/_includes/themes/j1/modules/adapter/bootsnav/procedures/quicklinks.proc +93 -0
- data/_includes/themes/j1/modules/adapter/bootsnav/procedures/sidebar.proc +123 -0
- data/_includes/themes/j1/modules/adapter/bootsnav/procedures/topsearch.proc +126 -0
- data/assets/themes/j1/bs_bootsnav/LICENSE.md +21 -0
- data/assets/themes/j1/bs_bootsnav/README.md +44 -0
- data/assets/themes/j1/bs_bootsnav/css/bootsnav.css +1570 -0
- data/assets/themes/j1/bs_bootsnav/css/bootsnav.min.css +28 -0
- data/assets/themes/j1/bs_bootsnav/css/skins/j1_template.css +394 -0
- data/assets/themes/j1/bs_bootsnav/css/style.css +503 -0
- data/assets/themes/j1/bs_bootsnav/css/style.min.css +20 -0
- data/assets/themes/j1/bs_bootsnav/images/brand/logo-black.png +0 -0
- data/assets/themes/j1/bs_bootsnav/images/brand/logo-white.png +0 -0
- data/assets/themes/j1/bs_bootsnav/images/thumb/thumb01.jpg +0 -0
- data/assets/themes/j1/bs_bootsnav/images/thumb/thumb02.jpg +0 -0
- data/assets/themes/j1/bs_bootsnav/images/thumb/thumb03.jpg +0 -0
- data/assets/themes/j1/bs_bootsnav/js/bootsnav.js +586 -0
- data/assets/themes/j1/bs_bootsnav/js/bootsnav.min.js +26 -0
- data/exe/console +14 -0
- data/exe/setup +8 -0
- data/lib/j1m_nav.rb +5 -0
- data/lib/j1m_nav/version.rb +3 -0
- metadata +118 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c69fd163e6c7a256d3e6b46e1cf28f0ce00ea264
|
4
|
+
data.tar.gz: 1e4f0ef48070f5561d2bdf3ed2db765628a8046d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f015393313db6578074669d820e0066ab85b0654f76eb3f074c4773d2720e0de56178642d85a6ad5ec69f2b2eb0c1d162e35509984ac2196c3071183408e968d
|
7
|
+
data.tar.gz: 02a98ac7eac480b0b03ea12318dccce1bbb9a64964c1a38a582cbfbe79f97c482edb8914704d45e579dbe2030d857bf15b39cdde42f41073fbf8e706f34ae6c4
|
data/LICENSE.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Juergen Adams
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# J1mNav
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/j1m_nav`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'j1m_nav'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install j1m_nav
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/j1m_nav.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
@@ -0,0 +1,337 @@
|
|
1
|
+
# ------------------------------------------------------------------------------
|
2
|
+
# J1: ~/_data/modules/j1_bootsnav.yml
|
3
|
+
# J1 NAV Module (Bootsnav) specific configuration data
|
4
|
+
#
|
5
|
+
# Product/Info:
|
6
|
+
# https://jekyll.one
|
7
|
+
#
|
8
|
+
# Copyright (C) 2017 Juergen Adams
|
9
|
+
#
|
10
|
+
# J1 Template is licensed under the MIT License.
|
11
|
+
# For details, see https://jekyll.one
|
12
|
+
#
|
13
|
+
# ------------------------------------------------------------------------------
|
14
|
+
|
15
|
+
# GENERAL settings
|
16
|
+
# -------------------------------------------------------------------------
|
17
|
+
|
18
|
+
# version
|
19
|
+
# --------------------------------------------------------------------
|
20
|
+
# Current version of the module
|
21
|
+
#
|
22
|
+
# values: string
|
23
|
+
# default: no defaults
|
24
|
+
#
|
25
|
+
version: 0.0.1
|
26
|
+
|
27
|
+
# debug
|
28
|
+
# --------------------------------------------------------------------
|
29
|
+
# Enables|Disables debug information (JS runtime events) written
|
30
|
+
# to console log
|
31
|
+
#
|
32
|
+
# values: boolean (true|false)
|
33
|
+
# default: false
|
34
|
+
#
|
35
|
+
debug: true
|
36
|
+
|
37
|
+
# icon_family
|
38
|
+
# --------------------------------------------------------------------
|
39
|
+
# Set the DEFAULT icon familiy from what a icon should be taken
|
40
|
+
# from (if NOT specified with a NAV Module component).
|
41
|
+
#
|
42
|
+
# NOTE: Be aware that the related CSS file for the font icon set
|
43
|
+
# needs to be included as a resource.
|
44
|
+
#
|
45
|
+
# values: string (FontAwesome|MDI)
|
46
|
+
# default: MDI
|
47
|
+
#
|
48
|
+
icon_family: MDI
|
49
|
+
|
50
|
+
# icon_color
|
51
|
+
# --------------------------------------------------------------------
|
52
|
+
# Set the DEFAULT icon color. Used if NOT specified with a NAV
|
53
|
+
# Module component.
|
54
|
+
#
|
55
|
+
# values: string (FontAwesome|MDI)
|
56
|
+
# default: md_grey
|
57
|
+
#
|
58
|
+
icon_color: md_grey
|
59
|
+
|
60
|
+
# icon_size
|
61
|
+
# --------------------------------------------------------------------
|
62
|
+
# Set the DEFAULT size of an font icon. Used if NOT specified
|
63
|
+
# with a NAV Module component.
|
64
|
+
#
|
65
|
+
# values: default|large|larger|xlarge|xxlarge|xxxlarge
|
66
|
+
# default: default
|
67
|
+
#
|
68
|
+
icon_size: default
|
69
|
+
|
70
|
+
# font_size
|
71
|
+
# --------------------------------------------------------------------
|
72
|
+
# Sets the DEFAULT font_size for the all dropdown menue items
|
73
|
+
#
|
74
|
+
# The size font_size can be given as an integer or as a string.
|
75
|
+
# If given as an integer, the size is set as pixel (px) value.
|
76
|
+
# If given as a string, the following values are supported:
|
77
|
+
#
|
78
|
+
#
|
79
|
+
# CSS specifiers: inherit|medium|small|large
|
80
|
+
# x-small|xx-small|x-large|xx-large
|
81
|
+
# CSS units: %|em|px|pt
|
82
|
+
#
|
83
|
+
# J1 specifiers: default|small|smaller|large|larger
|
84
|
+
# xsmall|xxsmall|xlarge|xxlarge
|
85
|
+
#
|
86
|
+
# NOTE: For best results for responsiveness, the font size
|
87
|
+
# property should be given as relative units or
|
88
|
+
# by specifiers like: 1.5em, 80%, small, large.
|
89
|
+
#
|
90
|
+
# values: integer|string
|
91
|
+
# default: default (1.0em)
|
92
|
+
#
|
93
|
+
font_size: default
|
94
|
+
|
95
|
+
# NavBar settings
|
96
|
+
# -------------------------------------------------------------------------
|
97
|
+
# Provides a (Bootrap-styled) navigation bar at the top
|
98
|
+
# of a page.
|
99
|
+
|
100
|
+
# fixed
|
101
|
+
# ----------------------------------------------------------
|
102
|
+
# Enables|Disables a fixed position of the top navigation
|
103
|
+
# bar. If a page is being scrolled down, the navigation bar
|
104
|
+
# leaves fixed at the most top position of the page.
|
105
|
+
#
|
106
|
+
# values: boolean (true|false)
|
107
|
+
# default: false
|
108
|
+
#
|
109
|
+
# style
|
110
|
+
# ----------------------------------------------------------
|
111
|
+
# At vero eos et accusam et justo duo dolores et ea rebum.
|
112
|
+
# Stet clita kasd gubergren, no sea takimata sanctus est.
|
113
|
+
#
|
114
|
+
# values: overlay|embedded
|
115
|
+
# default: overlay
|
116
|
+
#
|
117
|
+
# color
|
118
|
+
# ----------------------------------------------------------
|
119
|
+
# Sets the color for the top level menu items (including
|
120
|
+
# Quicklink icons)
|
121
|
+
#
|
122
|
+
# values: light|dark
|
123
|
+
# default: dark
|
124
|
+
#
|
125
|
+
# position
|
126
|
+
# ----------------------------------------------------------
|
127
|
+
# Enables|Disables a fixed position of the menu bar.
|
128
|
+
#
|
129
|
+
# values: left|right|centered
|
130
|
+
# default: left
|
131
|
+
#
|
132
|
+
# background_color_full
|
133
|
+
# ----------------------------------------------------------
|
134
|
+
# Sets the color for NavBar if *NOT* collapsed
|
135
|
+
#
|
136
|
+
# values: light|dark
|
137
|
+
# default: dark
|
138
|
+
#
|
139
|
+
# background_color_collapsed
|
140
|
+
# ----------------------------------------------------------
|
141
|
+
# Sets the color for NavBar *IF* collapsed
|
142
|
+
# Quicklink icons)
|
143
|
+
#
|
144
|
+
# values: light|dark
|
145
|
+
# default: dark
|
146
|
+
#
|
147
|
+
navbar:
|
148
|
+
fixed: true
|
149
|
+
style: overlay
|
150
|
+
color: light
|
151
|
+
position: left
|
152
|
+
bottom_line_height: 1
|
153
|
+
bottom_line_color: md_grey_200
|
154
|
+
background_color_full: rgba_darken
|
155
|
+
background_color_collapsed: j1_navbar_background
|
156
|
+
background_color_scrolled: j1_navbar_background
|
157
|
+
|
158
|
+
|
159
|
+
# MainMenu (global) settings
|
160
|
+
# -------------------------------------------------------------------------
|
161
|
+
# Provides (Bootrap-styled) dropdown menu as part of the NavBar
|
162
|
+
#
|
163
|
+
# NOTE: All DROPDOWN menu configuration have been moved to a
|
164
|
+
# separate file j1_bootsnav_mainmenu.yml
|
165
|
+
|
166
|
+
# dropdown_animate
|
167
|
+
# ----------------------------------------------------------
|
168
|
+
# Animates the dropdown menu of the TOP navigation bar.
|
169
|
+
# To use an animation, the CSS file animateCSS has to be
|
170
|
+
# loaded.
|
171
|
+
# See https://daneden.github.io/animate.css/ for details
|
172
|
+
#
|
173
|
+
# values: false or all values of animate.css
|
174
|
+
# default: false
|
175
|
+
#
|
176
|
+
# animate_duration
|
177
|
+
# ----------------------------------------------------------
|
178
|
+
# Duration of "dropdown_animate" measured in seconds
|
179
|
+
# has to be loaded.
|
180
|
+
#
|
181
|
+
# values: all values of animate.css
|
182
|
+
# default: fadeInDown
|
183
|
+
#
|
184
|
+
# dropdown_width
|
185
|
+
# ----------------------------------------------------------
|
186
|
+
# Sets the width of all dropdown menus, measured included
|
187
|
+
# pixesl (px). Increase this values, if longer text is used
|
188
|
+
# for menu items
|
189
|
+
#
|
190
|
+
# values: default|color names
|
191
|
+
# default: #eee (default)
|
192
|
+
#
|
193
|
+
# dropdown_font_size
|
194
|
+
# ----------------------------------------------------------
|
195
|
+
# Sets the font_size for the all dropdown menue items.
|
196
|
+
#
|
197
|
+
# NOTE: See parameter font_size for more details.
|
198
|
+
#
|
199
|
+
# values: integer|string
|
200
|
+
# default: default (1.0em)
|
201
|
+
#
|
202
|
+
# dropdown_padding
|
203
|
+
# ----------------------------------------------------------
|
204
|
+
# Adjusts the horizontal (h) and vertical (v) padding
|
205
|
+
# of the for the menue items (icons|text) for all
|
206
|
+
# dropdown menus.
|
207
|
+
#
|
208
|
+
# values: default|color names
|
209
|
+
# default: #eee (default)
|
210
|
+
#
|
211
|
+
# dropdown_border_color
|
212
|
+
# ----------------------------------------------------------
|
213
|
+
# Sets the top border color for all dropdown menus.
|
214
|
+
#
|
215
|
+
# values: light|dark
|
216
|
+
# default: dark
|
217
|
+
#
|
218
|
+
# dropdown_item_color
|
219
|
+
# ----------------------------------------------------------
|
220
|
+
# At vero eos et accusam et justo duo dolores et ea rebum.
|
221
|
+
# Stet clita kasd gubergren, no sea takimata sanctus est.
|
222
|
+
#
|
223
|
+
# values: light|dark
|
224
|
+
# default: dark
|
225
|
+
#
|
226
|
+
# dropdown_item_color_hover
|
227
|
+
# ----------------------------------------------------------
|
228
|
+
# At vero eos et accusam et justo duo dolores et ea rebum.
|
229
|
+
# Stet clita kasd gubergren, no sea takimata sanctus est.
|
230
|
+
#
|
231
|
+
# values: light|dark
|
232
|
+
# default: dark
|
233
|
+
#
|
234
|
+
mainmenu:
|
235
|
+
icon_family: FontAwesome
|
236
|
+
icon_color: md_grey
|
237
|
+
icon_size: large
|
238
|
+
dropdown_animate: default
|
239
|
+
animate_duration: 1.5
|
240
|
+
dropdown_width: 270
|
241
|
+
dropdown_font_size: small
|
242
|
+
megamenu_font_size: default
|
243
|
+
dropdown_padding_v: 10
|
244
|
+
dropdown_padding_h: 15
|
245
|
+
dropdown_border_color: j1_accent
|
246
|
+
dropdown_item_color: j1_primary_50
|
247
|
+
dropdown_item_color_hover: j1_primary
|
248
|
+
|
249
|
+
# QuickLinks settings
|
250
|
+
# -------------------------------------------------------------------------
|
251
|
+
#
|
252
|
+
# enabled
|
253
|
+
# --------------------------------------------------------------------
|
254
|
+
# Enables|Disables the use of QuickLinks.
|
255
|
+
#
|
256
|
+
# values: boolean (true|false)
|
257
|
+
# default: true
|
258
|
+
#
|
259
|
+
quicklinks:
|
260
|
+
enabled: true
|
261
|
+
icon_size: large
|
262
|
+
icon_color: md_white
|
263
|
+
top_search_icon: magnify
|
264
|
+
sidebar_icon: menu
|
265
|
+
facebook_icon: facebook
|
266
|
+
facebook_url: javascript:void(0)
|
267
|
+
twitter_icon: twitter
|
268
|
+
twitter_url:
|
269
|
+
google_plus_icon: google-plus
|
270
|
+
google_plus_url:
|
271
|
+
|
272
|
+
|
273
|
+
# TopSearch settings
|
274
|
+
# -------------------------------------------------------------------------
|
275
|
+
# Provides a search input bar over the top of every page used by
|
276
|
+
# SimpleJekyllSearch. If enabled, a magnifier icon is displayed within
|
277
|
+
# the QuickLink Bar at the most top posistion of the navigation bar
|
278
|
+
#
|
279
|
+
# enabled
|
280
|
+
# --------------------------------------------------------------------
|
281
|
+
# Enables|Disables the use of TopSearch
|
282
|
+
#
|
283
|
+
# values: boolean (true|false)
|
284
|
+
# default: false
|
285
|
+
#
|
286
|
+
# type
|
287
|
+
# --------------------------------------------------------------------
|
288
|
+
# Sets the search engine used for TopSearch
|
289
|
+
#
|
290
|
+
# values: quick_search|elastic_search
|
291
|
+
# default: quick_search
|
292
|
+
#
|
293
|
+
top_search:
|
294
|
+
enabled: true
|
295
|
+
type: quick_search
|
296
|
+
background_color: j1_primary_400
|
297
|
+
placeholder: QuickSearch
|
298
|
+
icon_size: xxlarge
|
299
|
+
icon_color: md_white
|
300
|
+
search_icon: magnify
|
301
|
+
close_icon: close
|
302
|
+
search_heading_lead: Quick Search Results
|
303
|
+
result_heading_lead: >
|
304
|
+
Quick Search carries out a basic search
|
305
|
+
for all documemts if this site.
|
306
|
+
|
307
|
+
# SideBar settings
|
308
|
+
# -------------------------------------------------------------------------
|
309
|
+
#
|
310
|
+
# enabled
|
311
|
+
# --------------------------------------------------------------------
|
312
|
+
# Enables|Disables the use of J1 SideBar.
|
313
|
+
#
|
314
|
+
# values: boolean (true|false)
|
315
|
+
# default: true
|
316
|
+
#
|
317
|
+
sidebar:
|
318
|
+
enabled: true
|
319
|
+
display_theme: true
|
320
|
+
icon_size: xxlarge
|
321
|
+
icon_color: md_white
|
322
|
+
close_icon: close
|
323
|
+
background_color: md_grey_800
|
324
|
+
|
325
|
+
boxes:
|
326
|
+
|
327
|
+
- box:
|
328
|
+
title: Site Info
|
329
|
+
type: linkbox
|
330
|
+
links:
|
331
|
+
Über: /about_j1_template
|
332
|
+
Impressum: /legal_impress_de
|
333
|
+
Nutzung: /legal_terms_of_use_de
|
334
|
+
Datenschutz: /legal_privacy-de
|
335
|
+
Lizensierung: /legal_license_agreement_de
|
336
|
+
Contact: mailto:contact@jekyll.one
|
337
|
+
|
@@ -0,0 +1,266 @@
|
|
1
|
+
# ------------------------------------------------------------------------------
|
2
|
+
# J1: ~/_data/modules/j1_bootsnav_menubar.yml
|
3
|
+
# J1 NAV Module (Bootsnav) specific configuration data
|
4
|
+
# Configuration of the Main Menu
|
5
|
+
#
|
6
|
+
# Product/Info:
|
7
|
+
# http://jekyll.one
|
8
|
+
#
|
9
|
+
# Copyright (C) 2017 Juergen Adams
|
10
|
+
#
|
11
|
+
# ------------------------------------------------------------------------------
|
12
|
+
|
13
|
+
- item: KickStart
|
14
|
+
sublevel:
|
15
|
+
- title: JEKYLL in a Day
|
16
|
+
href: /template/jekyll_in_a_day
|
17
|
+
icon: flask
|
18
|
+
- title: J1 TEMPLATE
|
19
|
+
icon: columns
|
20
|
+
dropdown:
|
21
|
+
- title: TEMPLATE Pages
|
22
|
+
href: /template/pages
|
23
|
+
icon: th-large
|
24
|
+
- title: TEMPLATE Components
|
25
|
+
href: /template/components
|
26
|
+
icon: th-large
|
27
|
+
- title: GALLERY Customizer
|
28
|
+
href: /template/gallery_customizer
|
29
|
+
icon: picture-o
|
30
|
+
|
31
|
+
- item: Manuals
|
32
|
+
sublevel:
|
33
|
+
- title: J1 Template
|
34
|
+
icon: columns
|
35
|
+
dropdown:
|
36
|
+
- title: Read Me First
|
37
|
+
href: /manuals/j1_read_me
|
38
|
+
icon: exclamation-triangle
|
39
|
+
|
40
|
+
- title: Core
|
41
|
+
icon: dot-circle-o
|
42
|
+
dropdown:
|
43
|
+
- title: Layouts
|
44
|
+
href: /manuals/j1_core_layouts
|
45
|
+
icon: window-maximize
|
46
|
+
- title: Templates
|
47
|
+
href: /manuals/j1_core_templates
|
48
|
+
icon: columns
|
49
|
+
- title: Data files
|
50
|
+
href: /manuals/j1_core_data_files
|
51
|
+
icon: database
|
52
|
+
- title: CSS components
|
53
|
+
href: /manuals/j1_core_css_components
|
54
|
+
icon: css3
|
55
|
+
- title: Javascript components
|
56
|
+
href: /manuals/j1_core_js_components
|
57
|
+
icon: code
|
58
|
+
- title: Color scheme
|
59
|
+
href: /manuals/j1_core_color_scheme
|
60
|
+
icon: paint-brush
|
61
|
+
|
62
|
+
- title: Modules
|
63
|
+
icon: microchip
|
64
|
+
dropdown:
|
65
|
+
- title: NAV Module
|
66
|
+
href: /manuals/j1_nav_module
|
67
|
+
icon: arrows
|
68
|
+
- title: TOC Module
|
69
|
+
href: /manuals/j1_toc_module
|
70
|
+
icon: list
|
71
|
+
- title: SEARCH Module
|
72
|
+
href: /manuals/j1_search_module
|
73
|
+
icon: search
|
74
|
+
- title: LIGHTBOX Module
|
75
|
+
href: /manuals/j1_lightbox_module
|
76
|
+
icon: eye
|
77
|
+
- title: CAROUSEL Module
|
78
|
+
href: /manuals/j1_carousel_module
|
79
|
+
icon: repeat
|
80
|
+
- title: GALLERY Module
|
81
|
+
href: /manuals/j1_gallery_module
|
82
|
+
icon: tasks
|
83
|
+
- title: THEME Module
|
84
|
+
href: /manuals/j1_theme_module
|
85
|
+
icon: th-large
|
86
|
+
- title: SCROLL Module
|
87
|
+
href: /manuals/j1_scroll_module
|
88
|
+
icon: arrow-up
|
89
|
+
- title: APP Module
|
90
|
+
href: /manuals/j1_app_module
|
91
|
+
icon: id-card-o
|
92
|
+
|
93
|
+
- title: Apps
|
94
|
+
icon: desktop
|
95
|
+
dropdown:
|
96
|
+
- title: THEME Manager
|
97
|
+
href: /manuals/j1_apps_theme_customizer
|
98
|
+
icon: th-large
|
99
|
+
- title: LINK Checker
|
100
|
+
href: /manuals/j1_apps_link_checker
|
101
|
+
icon: link
|
102
|
+
|
103
|
+
- title: Liquid
|
104
|
+
icon: tint
|
105
|
+
href: /manuals/j1_liquid_reference
|
106
|
+
- title: Asciidoc
|
107
|
+
href: /manuals/j1_asciidoc_reference
|
108
|
+
icon: font
|
109
|
+
- title: YAML
|
110
|
+
href: /manuals/j1_yaml_reference
|
111
|
+
icon: y-combinator
|
112
|
+
|
113
|
+
|
114
|
+
- item: Themes
|
115
|
+
theme_select:
|
116
|
+
- local_themes: enabled
|
117
|
+
title: THEMES from Jekyll-One
|
118
|
+
icon: th-large
|
119
|
+
- bootswatch_themes: enabled
|
120
|
+
title: THEMES from Bootswatch
|
121
|
+
icon: th-large
|
122
|
+
- preview: enabled
|
123
|
+
title: THEME Previewer
|
124
|
+
icon: eye
|
125
|
+
|
126
|
+
- item: Blog
|
127
|
+
sublevel:
|
128
|
+
- title: BLOG Simple
|
129
|
+
href: /posts/builder/simple
|
130
|
+
icon: calendar
|
131
|
+
- title: BLOG Timeline
|
132
|
+
href: /posts/builder/timeline
|
133
|
+
icon: clock-o
|
134
|
+
- title: BLOG Calendar
|
135
|
+
href: /posts/builder/calendar.html
|
136
|
+
icon: calendar
|
137
|
+
|
138
|
+
- item: Useful Links
|
139
|
+
megamenu:
|
140
|
+
- title: Online Tools
|
141
|
+
icon: cloud
|
142
|
+
column:
|
143
|
+
- title: FreeFormatter Online
|
144
|
+
href: http://www.freeformatter.com/
|
145
|
+
target: blank
|
146
|
+
icon: arrow-circle-o-right
|
147
|
+
- title: CSS Unminifier Online
|
148
|
+
href: http://mrcoles.com/blog/css-unminify/
|
149
|
+
target: blank
|
150
|
+
icon: css3
|
151
|
+
- title: JSON Editor Online
|
152
|
+
href: http://www.jsoneditoronline.org/
|
153
|
+
target: blank
|
154
|
+
icon: qq
|
155
|
+
- title: YAML Parser Online
|
156
|
+
href: http://yaml-online-parser.appspot.com/
|
157
|
+
target: blank
|
158
|
+
icon: y-combinator
|
159
|
+
- title: JS Beautifier Online
|
160
|
+
href: http://jsbeautifier.org/
|
161
|
+
target: blank
|
162
|
+
icon: code
|
163
|
+
- title: XML to YAML Converter
|
164
|
+
href: http://codebeautify.org/xml-to-yaml
|
165
|
+
target: blank
|
166
|
+
icon: exchange
|
167
|
+
- title: Word Cloud Generator
|
168
|
+
href: https://www.jasondavies.com/wordcloud/
|
169
|
+
target: blank
|
170
|
+
icon: cloud
|
171
|
+
- title: RegEx 101
|
172
|
+
href: https://regex101.com/
|
173
|
+
target: blank
|
174
|
+
icon: code
|
175
|
+
- title: RegEx Library
|
176
|
+
href: http://www.regexlib.com/
|
177
|
+
target: blank
|
178
|
+
icon: code
|
179
|
+
- title: Character Codes
|
180
|
+
href: http://character-code.com/
|
181
|
+
target: blank
|
182
|
+
icon: code
|
183
|
+
|
184
|
+
- title: Ressources Online
|
185
|
+
icon: random
|
186
|
+
column:
|
187
|
+
- title: Jekyll Home
|
188
|
+
href: https://jekyllrb.com/
|
189
|
+
target: blank
|
190
|
+
icon: flask
|
191
|
+
- title: Jekyll Tips
|
192
|
+
href: http://jekyll.tips/
|
193
|
+
target: blank
|
194
|
+
icon: flask
|
195
|
+
- title: Bootstrap Home
|
196
|
+
href: http://getbootstrap.com/
|
197
|
+
target: blank
|
198
|
+
icon: bold
|
199
|
+
- title: BootstrapCDN
|
200
|
+
href: https://www.bootstrapcdn.com/
|
201
|
+
target: blank
|
202
|
+
icon: download
|
203
|
+
- title: Font Awesome Icons
|
204
|
+
href: http://fontawesome.io/icons/
|
205
|
+
target: blank
|
206
|
+
icon: font-awesome
|
207
|
+
- title: Material Design Icons
|
208
|
+
href: https://material.io/icons/
|
209
|
+
target: blank
|
210
|
+
icon: window-maximize
|
211
|
+
- title: cdnJS
|
212
|
+
href: https://cdnjs.com/
|
213
|
+
target: blank
|
214
|
+
icon: download
|
215
|
+
- title: googleFonts
|
216
|
+
href: https://fonts.google.com/
|
217
|
+
target: blank
|
218
|
+
icon: tint
|
219
|
+
- title: Asciidoc FAQ
|
220
|
+
href: http://www.methods.co.nz/asciidoc/faq.html
|
221
|
+
target: blank
|
222
|
+
icon: font
|
223
|
+
- title: Asciidoctor
|
224
|
+
href: http://asciidoctor.org/
|
225
|
+
target: blank
|
226
|
+
icon: font
|
227
|
+
- title: W3 Schools
|
228
|
+
href: http://www.w3schools.com/
|
229
|
+
target: blank
|
230
|
+
icon: html5
|
231
|
+
- title: SelfHTML
|
232
|
+
href: https://wiki.selfhtml.org/
|
233
|
+
target: blank
|
234
|
+
icon: css3
|
235
|
+
|
236
|
+
- title: Language Tools
|
237
|
+
icon: file-text-o
|
238
|
+
column:
|
239
|
+
- title: LEO
|
240
|
+
href: http://dict.leo.org/ende/index_de.html
|
241
|
+
target: blank
|
242
|
+
icon: exchange
|
243
|
+
- title: Linguee
|
244
|
+
href: http://www.linguee.de/
|
245
|
+
target: blank
|
246
|
+
icon: exchange
|
247
|
+
- title: Google Translator
|
248
|
+
href: https://translate.google.de/
|
249
|
+
target: blank
|
250
|
+
icon: exchange
|
251
|
+
- title: Babelfisch Translator
|
252
|
+
href: http://www.babelfish.de/
|
253
|
+
target: blank
|
254
|
+
icon: exchange
|
255
|
+
|
256
|
+
- item: Apps
|
257
|
+
sublevel:
|
258
|
+
- title: THEME Customizer
|
259
|
+
href: /apps/j1_theme_customizer
|
260
|
+
icon: th-large
|
261
|
+
- title: LINK Checker
|
262
|
+
href: /apps/j1_link_checker
|
263
|
+
icon: link
|
264
|
+
|
265
|
+
- item: About
|
266
|
+
href: /about_j1_template
|