j1-template 2023.0.6 → 2023.0.8
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/_includes/themes/j1/layouts/layout_metadata_generator.html +1 -1
- data/_includes/themes/j1/modules/searcher/procedures/topsearch.proc +7 -10
- data/_includes/themes/j1/procedures/layouts/content_writer.proc +1 -1
- data/_includes/themes/j1/procedures/layouts/resource_writer.proc +8 -8
- data/_includes/themes/j1/procedures/posts/collate_timeline.proc +1 -1
- data/_layouts/default.html +94 -73
- data/assets/data/banner.html +2 -2
- data/assets/data/panel.0.html +1021 -0
- data/assets/data/panel.html +4 -4
- data/assets/themes/j1/adapter/js/j1.js +2577 -2525
- data/assets/themes/j1/adapter/js/themer.js +5 -1
- data/assets/themes/j1/core/css/themes/unodark/bootstrap.css +55 -0
- data/assets/themes/j1/core/css/themes/unodark/bootstrap.min.css +1 -1
- data/assets/themes/j1/core/css/themes/unolight/bootstrap.css +54 -7
- data/assets/themes/j1/core/css/themes/unolight/bootstrap.min.css +1 -1
- data/lib/j1/version.rb +1 -1
- data/lib/starter_web/Gemfile +1 -1
- data/lib/starter_web/README.md +5 -5
- data/lib/starter_web/_config.yml +9 -3
- data/lib/starter_web/_data/blocks/panel.yml +9 -9
- data/lib/starter_web/_data/j1_config.yml +8 -0
- data/lib/starter_web/_data/layouts/home.yml +1 -1
- data/lib/starter_web/_data/modules/defaults/blog_navigator.yml +44 -44
- data/lib/starter_web/_data/modules/defaults/navigator.yml +3 -1
- data/lib/starter_web/_data/resources.yml +29 -29
- data/lib/starter_web/_data/templates/feed.xml +1 -1
- data/lib/starter_web/_plugins/index/lunr.rb +1 -1
- data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +0 -1
- data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-static-site-generators.adoc +0 -4
- data/lib/starter_web/collections/posts/public/featured/_posts/2022-02-01-about-j1.adoc +0 -1
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +3 -2
@@ -202,6 +202,8 @@ j1.adapter.themer = (function (j1, window) {
|
|
202
202
|
_this.state = 'started';
|
203
203
|
logger.debug('\n' + 'state: ' + _this.getState());
|
204
204
|
|
205
|
+
$('#no_flicker').hide();
|
206
|
+
|
205
207
|
// jadams, 2021-07-25: problem seems NOT an timing issue on the iPad
|
206
208
|
// platform. (General) Dependency should be REMOVED!!!
|
207
209
|
// TODO: Isolate redirect for iPad ONLY!!!
|
@@ -280,6 +282,7 @@ j1.adapter.themer = (function (j1, window) {
|
|
280
282
|
// continue processing if page is ready
|
281
283
|
var dependencies_met_theme_loaded = setInterval (function () {
|
282
284
|
if (j1.getState() == 'finished') {
|
285
|
+
// $('#no_flicker').hide();
|
283
286
|
theme_css_html = '<link rel="stylesheet" id="' + id + '" href="' + user_state.theme_css + '" type="text/css" />';
|
284
287
|
$('head').append(theme_css_html);
|
285
288
|
|
@@ -330,9 +333,10 @@ j1.adapter.themer = (function (j1, window) {
|
|
330
333
|
_this.setState('finished');
|
331
334
|
logger.debug('\n' + 'state: ' + _this.getState());
|
332
335
|
logger.info('\n' + 'module initialized successfully');
|
333
|
-
|
336
|
+
$('#no_flicker').show();
|
334
337
|
clearInterval(dependencies_met_theme_applied);
|
335
338
|
}
|
339
|
+
|
336
340
|
}, 25); // END dependencies_met_theme_applied
|
337
341
|
|
338
342
|
}, // END init
|
@@ -9296,6 +9296,61 @@ cite, em, var, address, dfn {
|
|
9296
9296
|
.bmd-layout-drawer {
|
9297
9297
|
background: #424242; }
|
9298
9298
|
|
9299
|
+
/*
|
9300
|
+
// -----------------------------------------------------------------------------
|
9301
|
+
// ~/scss/theme_uno/extensions/_dropcap.scss
|
9302
|
+
// Provides general styles for the J1 Dropcaps
|
9303
|
+
//
|
9304
|
+
// Product/Info:
|
9305
|
+
// https://jekyll.one
|
9306
|
+
//
|
9307
|
+
// Copyright (C) 2023 Juergen Adams
|
9308
|
+
//
|
9309
|
+
// J1 Theme is licensed under the MIT License.
|
9310
|
+
// See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE.md
|
9311
|
+
// -----------------------------------------------------------------------------
|
9312
|
+
*/
|
9313
|
+
.j1-dropcap {
|
9314
|
+
font: 2em/0.8 "Roboto Slab", sans-serif;
|
9315
|
+
line-height: 1.25rem;
|
9316
|
+
color: #757575;
|
9317
|
+
float: left;
|
9318
|
+
padding-right: .125rem;
|
9319
|
+
margin-right: .125rem !important; }
|
9320
|
+
|
9321
|
+
/*
|
9322
|
+
# -----------------------------------------------------------------------------
|
9323
|
+
# ~/100_theme_css/scss/theme_uno_dark/extentions/_lane.scss
|
9324
|
+
#
|
9325
|
+
# Product/Info:
|
9326
|
+
# https://jekyll.one
|
9327
|
+
#
|
9328
|
+
# Copyright (C) 2023 Juergen Adams
|
9329
|
+
#
|
9330
|
+
# J1 Theme is licensed under the MIT License.
|
9331
|
+
# See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE.md
|
9332
|
+
# -----------------------------------------------------------------------------
|
9333
|
+
# NOTE: Styles for J1 Theme Lanes
|
9334
|
+
# -----------------------------------------------------------------------------
|
9335
|
+
*/
|
9336
|
+
.elevated-z0 {
|
9337
|
+
background-color: transparent; }
|
9338
|
+
|
9339
|
+
.elevated-z1 {
|
9340
|
+
background-color: rgba(255, 255, 255, 0.1); }
|
9341
|
+
|
9342
|
+
.elevated-z2 {
|
9343
|
+
background-color: rgba(255, 255, 255, 0.2); }
|
9344
|
+
|
9345
|
+
.elevated-z3 {
|
9346
|
+
background-color: rgba(255, 255, 255, 0.3); }
|
9347
|
+
|
9348
|
+
.elevated-z4 {
|
9349
|
+
background-color: rgba(255, 255, 255, 0.4); }
|
9350
|
+
|
9351
|
+
.elevated-z5 {
|
9352
|
+
background-color: rgba(255, 255, 255, 0.5); }
|
9353
|
+
|
9299
9354
|
/*
|
9300
9355
|
// -----------------------------------------------------------------------------
|
9301
9356
|
// ~/100_theme_css/scss/theme_uno_dark/extentions/_plans.scss
|