ultimate-jekyll-manager 0.0.96 → 0.0.97
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.
- package/.playwright-mcp/page-2025-10-22T19-11-27-666Z.png +0 -0
- package/.playwright-mcp/page-2025-10-22T19-11-57-357Z.png +0 -0
- package/_backup/cover-old.html +55 -0
- package/dist/assets/css/core/utilities.scss +3 -1
- package/dist/assets/js/pages/app/index.js +16 -32
- package/dist/defaults/dist/{redirects/authentication/helpers/well-known-change-password.html → .well-known/change-password.html} +4 -1
- package/dist/defaults/dist/.well-known/security.txt +15 -0
- package/dist/defaults/dist/_layouts/blueprint/app.html +1 -1
- package/dist/defaults/dist/_layouts/modules/utilities/redirect.html +1 -1
- package/dist/defaults/dist/_layouts/themes/classy/frontend/core/cover.html +6 -9
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/app.html +83 -0
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/oauth2.html +44 -46
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/reset.html +58 -60
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/signin.html +67 -70
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/signup.html +79 -81
- package/dist/defaults/dist/humans.txt +25 -0
- package/dist/defaults/dist/opensearch.xml +26 -0
- package/dist/defaults/dist/pages/test/account/dashboard.html +3 -0
- package/dist/defaults/dist/pages/test/index.md +2 -2
- package/dist/defaults/dist/pages/test/libraries/ads.html +3 -0
- package/dist/defaults/dist/pages/test/libraries/bootstrap-components.html +11 -2
- package/dist/defaults/dist/pages/test/libraries/cover.html +47 -0
- package/dist/defaults/dist/pages/test/libraries/error.html +3 -0
- package/dist/defaults/dist/pages/test/libraries/lazy-loading.html +3 -0
- package/dist/defaults/dist/pages/test/redirect/external.md +3 -0
- package/dist/defaults/dist/pages/test/redirect/internal.md +3 -0
- package/dist/defaults/dist/pages/test/translation/index.md +2 -2
- package/dist/defaults/dist/redirects/authentication/helpers/change-password.html +1 -1
- package/dist/defaults/dist/redirects/authentication/helpers/forgot.html +1 -1
- package/dist/defaults/dist/redirects/authentication/helpers/recover.html +1 -1
- package/dist/defaults/dist/redirects/authentication/helpers/reset-password.html +1 -1
- package/dist/defaults/dist/sitemap.html +112 -28
- package/dist/defaults/dist/sitemap.xml +6 -1
- package/firebase-debug.log +8 -0
- package/package.json +1 -1
|
@@ -20,87 +20,84 @@ social_signin:
|
|
|
20
20
|
logo: "https://cdn.itwcreativeworks.com/assets/general/images/brands/color/google.svg"
|
|
21
21
|
---
|
|
22
22
|
|
|
23
|
-
<
|
|
24
|
-
<div class="
|
|
25
|
-
<div class="card
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
<div class="
|
|
29
|
-
<
|
|
30
|
-
<img src="{{ site.brand.images.brandmark }}?cb={{ site.uj.cache_breaker }}" alt="{{ site.brand.name }} Logo"/>
|
|
31
|
-
</div>
|
|
32
|
-
</div>
|
|
33
|
-
|
|
34
|
-
<!-- Header -->
|
|
35
|
-
<div class="text-center mb-4">
|
|
36
|
-
<h1 class="h3 mb-2">Welcome Back!</h1>
|
|
37
|
-
<p class="text-muted">Sign in to your {{ site.brand.name }} account</p>
|
|
23
|
+
<section class="col-12 col-md-8 col-lg-6 col-xl-5" style="max-width: 540px;">
|
|
24
|
+
<div class="card border-0 shadow-lg">
|
|
25
|
+
<div class="card-body p-3 p-md-5">
|
|
26
|
+
<!-- Logo -->
|
|
27
|
+
<div class="text-center mb-3">
|
|
28
|
+
<div class="avatar avatar-xl">
|
|
29
|
+
<img src="{{ site.brand.images.brandmark }}?cb={{ site.uj.cache_breaker }}" alt="{{ site.brand.name }} Logo"/>
|
|
38
30
|
</div>
|
|
31
|
+
</div>
|
|
39
32
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
33
|
+
<!-- Header -->
|
|
34
|
+
<div class="text-center mb-4">
|
|
35
|
+
<h1 class="h3 mb-2">Welcome Back!</h1>
|
|
36
|
+
<p class="text-muted">Sign in to your {{ site.brand.name }} account</p>
|
|
37
|
+
</div>
|
|
44
38
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
<span class="avatar avatar-xs me-2">
|
|
50
|
-
<img src="{{ provider.logo }}?cb={{ site.uj.cache_breaker }}" class="object-fit-contain" alt="{{ provider.name }} Logo"/>
|
|
51
|
-
</span>
|
|
52
|
-
<span class="button-text">Continue with {{ provider.name }}</span>
|
|
53
|
-
</button>
|
|
54
|
-
{% endfor %}
|
|
55
|
-
</div>
|
|
39
|
+
<!-- Sign In Form -->
|
|
40
|
+
<form id="signin-form" autocomplete="on" novalidate>
|
|
41
|
+
<!-- Hidden default submit button for Enter key -->
|
|
42
|
+
<button type="submit" class="d-none" data-provider="email" aria-hidden="true" tabindex="-1"></button>
|
|
56
43
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
<
|
|
61
|
-
|
|
44
|
+
<!-- Social Login (Optional) -->
|
|
45
|
+
<div class="mb-4">
|
|
46
|
+
{% for provider in page.resolved.social_signin %}
|
|
47
|
+
<button type="submit" class="btn btn-adaptive _btn-lg w-100 mb-3 d-flex align-items-center justify-content-center" data-provider="{{ provider.id }}" disabled>
|
|
48
|
+
<span class="avatar avatar-xs me-2">
|
|
49
|
+
<img src="{{ provider.logo }}?cb={{ site.uj.cache_breaker }}" class="object-fit-contain" alt="{{ provider.name }} Logo"/>
|
|
50
|
+
</span>
|
|
51
|
+
<span class="button-text">Continue with {{ provider.name }}</span>
|
|
52
|
+
</button>
|
|
53
|
+
{% endfor %}
|
|
54
|
+
</div>
|
|
62
55
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
</div>
|
|
56
|
+
<!-- Divider -->
|
|
57
|
+
<div class="position-relative mb-4">
|
|
58
|
+
<hr class="text-muted">
|
|
59
|
+
<span class="position-absolute top-50 start-50 translate-middle px-3 text-muted small bg-body-secondary">OR</span>
|
|
60
|
+
</div>
|
|
69
61
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
<button class="btn border uj-password-toggle px-3" type="button" aria-label="Toggle password visibility">
|
|
77
|
-
<span class="uj-password-show">{% uj_icon "eye", "fa-fw" %}</span>
|
|
78
|
-
<span class="uj-password-hide d-none">{% uj_icon "eye-slash", "fa-fw" %}</span>
|
|
79
|
-
</button>
|
|
80
|
-
</div>
|
|
62
|
+
<div class="mb-3 text-start">
|
|
63
|
+
<label for="email" class="form-label fw-semibold">
|
|
64
|
+
Email <span class="text-danger">*</span>
|
|
65
|
+
</label>
|
|
66
|
+
<input type="email" class="form-control form-control-md" id="email" name="email" placeholder="Enter your email" autocomplete="email" autofocus required>
|
|
67
|
+
</div>
|
|
81
68
|
|
|
82
|
-
|
|
69
|
+
<div class="mb-3 text-start">
|
|
70
|
+
<label for="password" class="form-label fw-semibold">
|
|
71
|
+
Password <span class="text-danger">*</span>
|
|
72
|
+
</label>
|
|
73
|
+
<div class="input-group">
|
|
74
|
+
<input type="password" class="form-control form-control-md" id="password" name="password" placeholder="Enter your password" autocomplete="current-password" required>
|
|
75
|
+
<button class="btn border uj-password-toggle px-3" type="button" aria-label="Toggle password visibility">
|
|
76
|
+
<span class="uj-password-show">{% uj_icon "eye", "fa-fw" %}</span>
|
|
77
|
+
<span class="uj-password-hide d-none">{% uj_icon "eye-slash", "fa-fw" %}</span>
|
|
78
|
+
</button>
|
|
83
79
|
</div>
|
|
84
80
|
|
|
85
|
-
<
|
|
86
|
-
{% uj_icon "arrow-right-to-bracket", "me-2" %}
|
|
87
|
-
<span class="button-text">Sign In</span>
|
|
88
|
-
</button>
|
|
89
|
-
</form>
|
|
90
|
-
|
|
91
|
-
<!-- Links -->
|
|
92
|
-
<div class="text-center">
|
|
93
|
-
<!-- <p class="text-muted mb-2">
|
|
94
|
-
<a href="/reset" class="text-decoration-none small">Forgot password?</a>
|
|
95
|
-
</p> -->
|
|
96
|
-
<p class="text-muted mb-0">
|
|
97
|
-
Don't have an account yet?
|
|
98
|
-
<a href="/signup" class="text-decoration-none fw-semibold">Sign up</a>
|
|
99
|
-
</p>
|
|
81
|
+
<a href="/reset" class="text-decoration-none small mt-1">Forgot password?</a>
|
|
100
82
|
</div>
|
|
83
|
+
|
|
84
|
+
<button type="submit" class="btn btn-success _btn-lg w-100 mb-3" data-provider="email" disabled>
|
|
85
|
+
{% uj_icon "arrow-right-to-bracket", "me-2" %}
|
|
86
|
+
<span class="button-text">Sign In</span>
|
|
87
|
+
</button>
|
|
88
|
+
</form>
|
|
89
|
+
|
|
90
|
+
<!-- Links -->
|
|
91
|
+
<div class="text-center">
|
|
92
|
+
<!-- <p class="text-muted mb-2">
|
|
93
|
+
<a href="/reset" class="text-decoration-none small">Forgot password?</a>
|
|
94
|
+
</p> -->
|
|
95
|
+
<p class="text-muted mb-0">
|
|
96
|
+
Don't have an account yet?
|
|
97
|
+
<a href="/signup" class="text-decoration-none fw-semibold">Sign up</a>
|
|
98
|
+
</p>
|
|
101
99
|
</div>
|
|
102
100
|
</div>
|
|
103
101
|
</div>
|
|
104
|
-
</
|
|
105
|
-
|
|
102
|
+
</section>
|
|
106
103
|
{{ content | uj_content_format }}
|
|
@@ -20,99 +20,97 @@ social_signup:
|
|
|
20
20
|
logo: "https://cdn.itwcreativeworks.com/assets/general/images/brands/color/google.svg"
|
|
21
21
|
---
|
|
22
22
|
|
|
23
|
-
<
|
|
24
|
-
<div class="
|
|
25
|
-
<div class="card
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
<div class="
|
|
29
|
-
<
|
|
30
|
-
<img src="{{ site.brand.images.brandmark }}?cb={{ site.uj.cache_breaker }}" alt="{{ site.brand.name }} Logo"/>
|
|
31
|
-
</div>
|
|
23
|
+
<section class="col-12 col-md-8 col-lg-6 col-xl-5" style="max-width: 540px;">
|
|
24
|
+
<div class="card border-0 shadow-lg">
|
|
25
|
+
<div class="card-body p-3 p-md-5">
|
|
26
|
+
<!-- Logo -->
|
|
27
|
+
<div class="text-center mb-3">
|
|
28
|
+
<div class="avatar avatar-xl">
|
|
29
|
+
<img src="{{ site.brand.images.brandmark }}?cb={{ site.uj.cache_breaker }}" alt="{{ site.brand.name }} Logo"/>
|
|
32
30
|
</div>
|
|
31
|
+
</div>
|
|
33
32
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
<!-- Header -->
|
|
34
|
+
<div class="text-center mb-4">
|
|
35
|
+
<h1 class="h3 mb-2">Create Your Account</h1>
|
|
36
|
+
<p class="text-muted">Get started with {{ site.brand.name }} in seconds</p>
|
|
37
|
+
</div>
|
|
39
38
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
<!-- Sign Up Form -->
|
|
40
|
+
<form id="signup-form" autocomplete="on" novalidate>
|
|
41
|
+
<!-- Hidden default submit button for Enter key -->
|
|
42
|
+
<button type="submit" class="d-none" data-provider="email" aria-hidden="true" tabindex="-1"></button>
|
|
44
43
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
44
|
+
<!-- Social Signup (Optional) -->
|
|
45
|
+
<div class="mb-4">
|
|
46
|
+
{% for provider in page.resolved.social_signup %}
|
|
47
|
+
<button type="submit" class="btn btn-adaptive _btn-lg w-100 mb-3 d-flex align-items-center justify-content-center" data-provider="{{ provider.id }}" disabled>
|
|
48
|
+
<span class="avatar avatar-xs me-2">
|
|
49
|
+
<img src="{{ provider.logo }}?cb={{ site.uj.cache_breaker }}" class="object-fit-contain" alt="{{ provider.name }} Logo"/>
|
|
50
|
+
</span>
|
|
51
|
+
<span class="button-text">Sign up with {{ provider.name }}</span>
|
|
52
|
+
</button>
|
|
53
|
+
{% endfor %}
|
|
54
|
+
</div>
|
|
56
55
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
56
|
+
<!-- Divider -->
|
|
57
|
+
<div class="position-relative mb-4">
|
|
58
|
+
<hr class="text-muted">
|
|
59
|
+
<span class="position-absolute top-50 start-50 translate-middle px-3 text-muted small bg-body-secondary">OR</span>
|
|
60
|
+
</div>
|
|
61
|
+
<!-- <div class="row g-3 mb-3 text-start">
|
|
62
|
+
<div class="col-md-6">
|
|
63
|
+
<label for="firstName" class="form-label fw-semibold">First Name</label>
|
|
64
|
+
<input type="text" class="form-control form-control-md" id="firstName" name="firstName" placeholder="John" autocomplete="given-name" required>
|
|
65
|
+
</div>
|
|
66
|
+
<div class="col-md-6">
|
|
67
|
+
<label for="lastName" class="form-label fw-semibold">Last Name</label>
|
|
68
|
+
<input type="text" class="form-control form-control-md" id="lastName" name="lastName" placeholder="Doe" autocomplete="family-name" required>
|
|
69
|
+
</div>
|
|
70
|
+
</div> -->
|
|
72
71
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
72
|
+
<div class="mb-3 text-start">
|
|
73
|
+
<label for="email" class="form-label fw-semibold">
|
|
74
|
+
Email <span class="text-danger">*</span>
|
|
75
|
+
</label>
|
|
76
|
+
<input type="email" class="form-control form-control-md" id="email" name="email" placeholder="Enter your email" autocomplete="email" autofocus required>
|
|
77
|
+
</div>
|
|
79
78
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
79
|
+
<div class="mb-3 text-start">
|
|
80
|
+
<label for="password" class="form-label fw-semibold">
|
|
81
|
+
Password <span class="text-danger">*</span>
|
|
82
|
+
</label>
|
|
83
|
+
<div class="input-group">
|
|
84
|
+
<input type="password" class="form-control form-control-md" id="password" name="password" placeholder="Create a strong password" autocomplete="new-password" required>
|
|
85
|
+
<button class="btn border uj-password-toggle px-3" type="button" aria-label="Toggle password visibility">
|
|
86
|
+
<span class="uj-password-show">{% uj_icon "eye", "fa-fw" %}</span>
|
|
87
|
+
<span class="uj-password-hide d-none">{% uj_icon "eye-slash", "fa-fw" %}</span>
|
|
88
|
+
</button>
|
|
89
|
+
</div>
|
|
90
|
+
<!-- <div class="form-text">Must be at least 8 characters with letters and numbers</div> -->
|
|
91
|
+
</div>
|
|
93
92
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
93
|
+
<div class="mb-3 text-center">
|
|
94
|
+
<p class="text-muted small">
|
|
95
|
+
By signing up, you agree to {{ site.brand.name }}'s <a href="/terms" class="text-decoration-none" target="_blank">Terms of Service</a> and <a href="/privacy" class="text-decoration-none" target="_blank">Privacy Policy</a>.
|
|
96
|
+
</p>
|
|
97
|
+
</div>
|
|
99
98
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
99
|
+
<button type="submit" class="btn btn-success _btn-lg w-100 mb-3" data-provider="email" disabled>
|
|
100
|
+
{% uj_icon "user-plus", "me-2" %}
|
|
101
|
+
<span class="button-text">Create Account</span>
|
|
102
|
+
</button>
|
|
103
|
+
</form>
|
|
105
104
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
</div>
|
|
105
|
+
<!-- Sign In Link -->
|
|
106
|
+
<div class="text-center">
|
|
107
|
+
<p class="text-muted mb-0">
|
|
108
|
+
Already have an account?
|
|
109
|
+
<a href="/signin" class="text-decoration-none fw-semibold">Sign in</a>
|
|
110
|
+
</p>
|
|
113
111
|
</div>
|
|
114
112
|
</div>
|
|
115
113
|
</div>
|
|
116
|
-
</
|
|
114
|
+
</section>
|
|
117
115
|
|
|
118
116
|
{{ content | uj_content_format }}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
### ALL PAGES ###
|
|
3
|
+
layout: null
|
|
4
|
+
permalink: /humans.txt
|
|
5
|
+
|
|
6
|
+
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: false
|
|
9
|
+
---
|
|
10
|
+
/* TEAM */
|
|
11
|
+
Website: {{ site.brand.name }}
|
|
12
|
+
Site: {{ site.url }}
|
|
13
|
+
Twitter: {{ site.brand.social.twitter }}
|
|
14
|
+
Location: {{ site.brand.location }}
|
|
15
|
+
|
|
16
|
+
/* THANKS */
|
|
17
|
+
Framework: Ultimate Jekyll
|
|
18
|
+
Built with: Jekyll, Bootstrap, Font Awesome
|
|
19
|
+
Hosting: Various
|
|
20
|
+
|
|
21
|
+
/* SITE */
|
|
22
|
+
Last update: {{ site.time | date: "%Y/%m/%d" }}
|
|
23
|
+
Standards: HTML5, CSS3, JavaScript ES6+
|
|
24
|
+
Components: Jekyll, Liquid, SCSS, Webpack
|
|
25
|
+
IDE: Visual Studio Code
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
### ALL PAGES ###
|
|
3
|
+
layout: null
|
|
4
|
+
permalink: /opensearch.xml
|
|
5
|
+
|
|
6
|
+
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: false
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
{% assign favicon-path = site.url | append: "/assets/images/favicon" %}
|
|
12
|
+
{%- iftruthy page.resolved.favicon.path -%}
|
|
13
|
+
{% assign favicon-path = page.resolved.favicon.path %}
|
|
14
|
+
{%- endiftruthy -%}
|
|
15
|
+
|
|
16
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
17
|
+
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
|
18
|
+
<ShortName>{{ site.brand.name }}</ShortName>
|
|
19
|
+
<Description>Search {{ site.brand.name }}</Description>
|
|
20
|
+
<InputEncoding>UTF-8</InputEncoding>
|
|
21
|
+
<Image width="16" height="16" type="image/x-icon">{{ favicon-path }}/favicon.ico?cb={{ site.uj.cache_breaker }}</Image>
|
|
22
|
+
<Image width="32" height="32" type="image/png">{{ favicon-path }}/favicon-32x32.png?cb={{ site.uj.cache_breaker }}</Image>
|
|
23
|
+
<Image width="64" height="64" type="image/png">{{ favicon-path }}/favicon-32x32.png?cb={{ site.uj.cache_breaker }}</Image>
|
|
24
|
+
<Url type="text/html" template="{{ site.url }}/search?q={searchTerms}"/>
|
|
25
|
+
<Url type="application/opensearchdescription+xml" rel="self" template="{{ site.url }}/opensearch.xml"/>
|
|
26
|
+
</OpenSearchDescription>
|
|
@@ -4,10 +4,13 @@ layout: themes/[ site.theme.id ]/frontend/core/minimal
|
|
|
4
4
|
permalink: /test/account/dashboard
|
|
5
5
|
|
|
6
6
|
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: true
|
|
7
9
|
meta:
|
|
8
10
|
title: "Dashboard Account Test Page"
|
|
9
11
|
description: "Test"
|
|
10
12
|
breadcrumb: "Dashboard Test page"
|
|
13
|
+
index: false
|
|
11
14
|
|
|
12
15
|
### WEB MANAGER CONFIG ###
|
|
13
16
|
web_manager:
|
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
layout: themes/[ site.theme.id ]/frontend/core/minimal
|
|
4
4
|
permalink: /test
|
|
5
5
|
|
|
6
|
+
### REGULAR PAGES ###
|
|
6
7
|
sitemap:
|
|
7
8
|
include: true
|
|
8
|
-
|
|
9
|
-
### REGULAR PAGES ###
|
|
10
9
|
meta:
|
|
11
10
|
title: "Test Page"
|
|
12
11
|
description: "This is a test page for the Ultimate Jekyll Manager."
|
|
13
12
|
breadcrumb: "Test Page"
|
|
13
|
+
index: false
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
This is a test page for the Ultimate Jekyll Manager. It is designed to demonstrate various features and functionalities of the system.
|
|
@@ -4,10 +4,13 @@ layout: themes/[ site.theme.id ]/frontend/core/base
|
|
|
4
4
|
permalink: /test/libraries/ads
|
|
5
5
|
|
|
6
6
|
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: true
|
|
7
9
|
meta:
|
|
8
10
|
title: "AdSense Test Page"
|
|
9
11
|
description: "Test page for demonstrating AdSense ad units"
|
|
10
12
|
breadcrumb: "AdSense Test"
|
|
13
|
+
index: false
|
|
11
14
|
---
|
|
12
15
|
|
|
13
16
|
<div class="container py-5">
|
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
---
|
|
2
|
+
### ALL PAGES ###
|
|
2
3
|
layout: themes/[ site.theme.id ]/frontend/core/base
|
|
3
|
-
|
|
4
|
-
|
|
4
|
+
permalink: /test/libraries/bootstrap-components
|
|
5
|
+
|
|
6
|
+
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: true
|
|
9
|
+
meta:
|
|
10
|
+
title: "Bootstrap Components Test Page"
|
|
11
|
+
description: "Test page for demonstrating Bootstrap components"
|
|
12
|
+
breadcrumb: "Bootstrap Components Test"
|
|
13
|
+
index: false
|
|
5
14
|
---
|
|
6
15
|
|
|
7
16
|
<div class="container py-5">
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
### COVER LAYOUT ###
|
|
3
|
+
layout: themes/[ site.theme.id ]/frontend/core/cover
|
|
4
|
+
permalink: /test/libraries/cover
|
|
5
|
+
title: Cover Page Example
|
|
6
|
+
description: Example of a centered cover page layout
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- Login Section - max-width keeps form dainty on larger screens -->
|
|
10
|
+
<section class="col-12 col-md-8 col-lg-6 col-xl-5" style="max-width: 540px;">
|
|
11
|
+
<div class="card shadow">
|
|
12
|
+
<div class="card-body p-4">
|
|
13
|
+
<h2 class="text-center mb-4">Welcome Back</h2>
|
|
14
|
+
<form>
|
|
15
|
+
<div class="mb-3">
|
|
16
|
+
<label for="emailInput" class="form-label">Email address</label>
|
|
17
|
+
<input type="email" class="form-control" id="emailInput" placeholder="Enter email">
|
|
18
|
+
</div>
|
|
19
|
+
<div class="mb-3">
|
|
20
|
+
<label for="passwordInput" class="form-label">Password</label>
|
|
21
|
+
<input type="password" class="form-control" id="passwordInput" placeholder="Password">
|
|
22
|
+
</div>
|
|
23
|
+
<div class="mb-3 form-check">
|
|
24
|
+
<input type="checkbox" class="form-check-input" id="rememberCheck">
|
|
25
|
+
<label class="form-check-label" for="rememberCheck">
|
|
26
|
+
Remember me
|
|
27
|
+
</label>
|
|
28
|
+
</div>
|
|
29
|
+
<button type="submit" class="btn btn-primary w-100">Sign In</button>
|
|
30
|
+
<div class="text-center mt-3">
|
|
31
|
+
<small class="text-muted">
|
|
32
|
+
Don't have an account? <a href="#">Sign up</a>
|
|
33
|
+
</small>
|
|
34
|
+
</div>
|
|
35
|
+
</form>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
<!-- Additional content to test scrolling behavior -->
|
|
40
|
+
<div class="mt-4 text-center">
|
|
41
|
+
<p class="text-muted">
|
|
42
|
+
<small>This layout centers content vertically and horizontally.</small><br>
|
|
43
|
+
<small>Use column classes with style="max-width: 540px;" to control form width.</small><br>
|
|
44
|
+
<small>If content exceeds viewport height, it scrolls naturally.</small>
|
|
45
|
+
</p>
|
|
46
|
+
</div>
|
|
47
|
+
</section>
|
|
@@ -4,10 +4,13 @@ layout: themes/[ site.theme.id ]/frontend/core/base
|
|
|
4
4
|
permalink: /test/libraries/error
|
|
5
5
|
|
|
6
6
|
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: true
|
|
7
9
|
meta:
|
|
8
10
|
title: "Error Test Page"
|
|
9
11
|
description: "Test page for demonstrating error handling"
|
|
10
12
|
breadcrumb: "Error Test"
|
|
13
|
+
index: false
|
|
11
14
|
---
|
|
12
15
|
|
|
13
16
|
<div class="container py-5">
|
|
@@ -4,10 +4,13 @@ layout: themes/[ site.theme.id ]/frontend/core/base
|
|
|
4
4
|
permalink: /test/libraries/lazy-loading
|
|
5
5
|
|
|
6
6
|
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: true
|
|
7
9
|
meta:
|
|
8
10
|
title: "Lazy Loading Test Page"
|
|
9
11
|
description: "Test page for demonstrating lazy loading functionality"
|
|
10
12
|
breadcrumb: "Lazy Loading Test"
|
|
13
|
+
index: false
|
|
11
14
|
---
|
|
12
15
|
|
|
13
16
|
<div class="container py-5">
|
|
@@ -4,10 +4,13 @@ layout: modules/utilities/redirect
|
|
|
4
4
|
permalink: /test/redirect/external
|
|
5
5
|
|
|
6
6
|
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: true
|
|
7
9
|
meta:
|
|
8
10
|
title: "External Redirect Test Page"
|
|
9
11
|
description: "This is a test External Redirect page for the Ultimate Jekyll Manager."
|
|
10
12
|
breadcrumb: "External Redirect Test Page"
|
|
13
|
+
index: false
|
|
11
14
|
|
|
12
15
|
redirect:
|
|
13
16
|
url: "https://google.com"
|
|
@@ -4,10 +4,13 @@ layout: modules/utilities/redirect
|
|
|
4
4
|
permalink: /test/redirect/internal
|
|
5
5
|
|
|
6
6
|
### REGULAR PAGES ###
|
|
7
|
+
sitemap:
|
|
8
|
+
include: true
|
|
7
9
|
meta:
|
|
8
10
|
title: "Internal Redirect Test Page"
|
|
9
11
|
description: "This is a test Internal Redirect page for the Ultimate Jekyll Manager."
|
|
10
12
|
breadcrumb: "Internal Redirect Test Page"
|
|
13
|
+
index: false
|
|
11
14
|
|
|
12
15
|
redirect:
|
|
13
16
|
url: "/test"
|
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
layout: themes/[ site.theme.id ]/frontend/core/minimal
|
|
4
4
|
permalink: /test/translation
|
|
5
5
|
|
|
6
|
+
### REGULAR PAGES ###
|
|
6
7
|
sitemap:
|
|
7
8
|
include: true
|
|
8
|
-
|
|
9
|
-
### REGULAR PAGES ###
|
|
10
9
|
meta:
|
|
11
10
|
title: "Test Translation Page"
|
|
12
11
|
description: "This is a test Translation page for the Ultimate Jekyll Manager."
|
|
13
12
|
breadcrumb: "Test Translation Page"
|
|
13
|
+
index: false
|
|
14
14
|
|
|
15
15
|
### WEB MANAGER CONFIG ###
|
|
16
16
|
web_manager:
|