casjaysdev-jekyll-theme 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/.gitattributes +0 -0
  3. data/.gitignore +96 -17
  4. data/.prettierrc.json +8 -0
  5. data/.vscode/settings.json +6 -0
  6. data/Gemfile +25 -15
  7. data/LICENSE.md +1 -1
  8. data/_config.yml +195 -105
  9. data/_data/nav/external.yml +1 -1
  10. data/_includes/ads/adsense.html +15 -0
  11. data/_includes/analytics/google.html +13 -0
  12. data/_includes/{casjaysdev/piwik.html → analytics/matomo.html} +5 -6
  13. data/_includes/casjays-footer.html +61 -43
  14. data/_includes/casjays-header.html +39 -1
  15. data/_includes/casjaysdev/clock.html +3 -12
  16. data/_includes/casjaysdev/eucookie.html +21 -30
  17. data/_includes/casjaysdev/legal.html +17 -38
  18. data/_includes/casjaysdev/rocketchat.html +3 -4
  19. data/_includes/casjaysdev/sharethis.html +6 -42
  20. data/_includes/casjaysdev/socialfooter.html +9 -85
  21. data/_includes/casjaysdev/sociallinks.html +51 -79
  22. data/_includes/casjaysdev/statcounter.html +8 -25
  23. data/_includes/casjaysdev/theme.html +9 -11
  24. data/_includes/casjaysdev/widgetbot.html +3 -1
  25. data/_includes/disqus.html +3 -7
  26. data/_includes/functions/blog.html +68 -0
  27. data/_includes/functions/default.html +3 -0
  28. data/{_pages → _includes/functions}/gallery/index.html +3 -5
  29. data/_includes/functions/gallery.html +44 -0
  30. data/_includes/functions/recipes.html +68 -0
  31. data/_includes/github.html +17 -7
  32. data/_includes/nav/external.html +10 -11
  33. data/_includes/nav/internal.html +14 -10
  34. data/_includes/nav/sidebars/right.html +2 -1
  35. data/_includes/nav/top.html +12 -19
  36. data/_includes/themes/blank/layouts/default.html +5 -20
  37. data/_includes/themes/blank/navigation.html +16 -18
  38. data/_includes/themes/hacker/layouts/default.html +32 -60
  39. data/_includes/themes/hacker/meta.html +2 -95
  40. data/_includes/themes/hacker/page_header.html +27 -0
  41. data/_layouts/default.html +32 -13
  42. data/_layouts/page.html +3 -3
  43. data/_layouts/post.html +1 -1
  44. data/_layouts/recipes.html +43 -0
  45. data/_pages/about/index.html +3 -5
  46. data/_pages/blog/catergories/catergories.html +6 -6
  47. data/_pages/blog/index.html +48 -44
  48. data/_pages/blog/tags/tags.html +6 -6
  49. data/_pages/contact/index.html +62 -160
  50. data/_pages/index.html +102 -7
  51. data/_pages/rss/index.xml +1 -0
  52. data/_posts/2021-07-31-welcome-to-your-new-site.md +14 -0
  53. data/_posts/2022-07-31-templates-update.md +14 -0
  54. data/_posts/2023-04-24-theme-rewrite.md +14 -0
  55. data/assets/css/bootstrap/bootstrap-icons.css +5994 -2002
  56. data/assets/css/bootstrap/font-awesome.css +6812 -3
  57. data/assets/css/errorpages/errorpages.css +8 -7
  58. data/assets/css/gh/ribbon.css +31 -18
  59. data/assets/css/hacker.css +41 -54
  60. data/assets/css/other/forms-min.css +316 -1
  61. data/assets/js/errorpages/homepage.js +4 -2
  62. data/assets/js/errorpages/isup.js +5 -2
  63. data/assets/js/errorpages/loaddomain.js +5 -2
  64. data/assets/js/fetch-url.js +1 -3
  65. data/assets/js/utils/bootstrap.bundle.min.js +4181 -6
  66. data/assets/js/utils/fetch.min.js +467 -1
  67. data/casjaysdev-jekyll-theme.gemspec +16 -6
  68. data/error/403.html +49 -0
  69. data/error/404.html +39 -34
  70. data/error/418.html +48 -0
  71. data/error/500.html +39 -34
  72. data/error/502.html +49 -0
  73. data/error/503.html +49 -0
  74. data/error/504.html +49 -0
  75. data/health/index.html +7 -0
  76. data/health/json +3 -0
  77. data/health/txt +1 -0
  78. metadata +259 -22
  79. data/.editorconfig +0 -8
  80. data/CNAME +0 -1
  81. data/Gemfile.lock +0 -310
  82. data/_includes/casjaysdev/ads.html +0 -24
  83. data/_includes/casjaysdev/google.html +0 -32
  84. data/_includes/image-gallery.html +0 -30
  85. data/_layouts/errors.html +0 -26
  86. data/images/.keep +0 -1
@@ -3,28 +3,46 @@
3
3
 
4
4
  <head>
5
5
  {% include casjays-header.html %}
6
- {% if site.custom_theme.name %}
7
- {% include themes/{{ site.custom_theme.name }}/meta.html %}
6
+ {% if site.custom_theme.directory %}
7
+ {% include themes/{{ site.custom_theme.directory }}/meta.html %}
8
8
  {% endif %}
9
9
  </head>
10
10
 
11
- <body onload="javascript:loadDomain();">
12
- <div>
13
- {% if site.custom_theme.name %}
14
- {% include themes/{{ site.custom_theme.name }}/layouts/default.html %}
11
+ <body class="text-center align-item-center" style="font-size: {{ site.custom_theme.nav.font_size.default }};">
12
+ <div class="container-fluid" style="display:flexbox;max-width: 95%;margin-left: 20px;margin-right: 20px;justify-content: center;">
13
+ {% if site.function_type == 'default' %}
14
+ <!-- begin default -->
15
+ {% include themes/{{ site.custom_theme.directory }}/layouts/default.html %}
16
+ {% elsif site.function_type == 'blog' %}
17
+ <!-- begin blog -->
18
+ {% include functions/blog.html %}
19
+ {% elsif site.function_type == 'gallery' %}
20
+ <!-- begin gallery -->
21
+ {% include functions/gallery.html %}
22
+ {% elsif site.function_type == 'recipes' %}
23
+ <!-- begin recipes -->
24
+ {% include functions/recipes.html %}
25
+ {% elsif site.custom_theme.directory %}
26
+ <!-- begin default -->
27
+ {% include themes/{{ site.custom_theme.directory }}/layouts/default.html %}
15
28
  {% else %}
16
- {{ content }}
29
+ <div>
30
+ <!-- begin -->
31
+ {{ content }}
32
+ </div>
17
33
  {% endif %}
18
-
19
- {% if site.github.forkme == true %}
20
- <a class="github-fork-ribbon {{ site.github.layout }}" href="{{ site.github.repository_url }}/fork"
21
- data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub
22
- </a>
34
+ <!-- end default -->
35
+ <br />
36
+ <div class="container text-center align-item-center">
37
+ <hr class="hr" style="width: 100%; border: none;border-top: 3px double #dfdbdb;color: #949393;overflow: hidden;height: 5px;" />
38
+ {% if site.function_type != 'default' %}
39
+ <div class="container text-center align-item-center">
40
+ {% include casjaysdev/sociallinks.html %}
41
+ </div>
23
42
  {% endif %}
24
43
  <br />
25
44
  <br />
26
45
  <br />
27
- <br />
28
46
  <div class="footer footer-custom col-sm-12">
29
47
  {% include {{ site.custom_theme.footer }} %}
30
48
  </div>
@@ -33,6 +51,7 @@
33
51
  <br />
34
52
  <br />
35
53
  </div>
54
+ </div>
36
55
  </body>
37
56
 
38
57
  </html>
data/_layouts/page.html CHANGED
@@ -2,9 +2,9 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- <article class="page">
6
- <div class="entry">
5
+ <div class="entry" style="font-size: {{ site.custom_theme.nav.font_size.default }}">
6
+ <article class="page">
7
7
  {{ content }}
8
+ </article>
8
9
  </div>
9
- </article>
10
10
  <br />
data/_layouts/post.html CHANGED
@@ -2,7 +2,7 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- <div class="container">
5
+ <div class="container" style="font-size: {{ site.custom_theme.nav.font_size.default }}">
6
6
  <div class="card border-success mb-3">
7
7
  <article class="post">
8
8
  <h1>{{ page.title }}</h1>
@@ -0,0 +1,43 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="container" style="font-size: {{ site.custom_theme.nav.font_size.default }}">
6
+ <article class="post">
7
+ <h1>{{ page.title }}</h1>
8
+
9
+ <div class="entry">
10
+ {{ content }}
11
+ </div>
12
+ <br /><br />
13
+ <div class="date">
14
+ Written by <a
15
+ href="{{ author.url }}">{% if page.author %}{{ page.author }}{% else %}{{ site.author.name }}{% endif %}</a> on
16
+ {{ page.date | date: '%B %d, %Y @ %H:%M' }}
17
+ </div>
18
+ <br />
19
+ </article>
20
+
21
+ <div class="paginate">
22
+ <a class="btn btn-primary" href="{{ page.previous.url | prepend: site.baseurl }}" data-toggle="tooltip"
23
+ data-placement="top" title="{{ page.previous.title }}">&larr; Previous<span class="d-none d-md-inline">
24
+ Post</span></a>
25
+
26
+ <a class="btn btn-primary" href="{{ page.next.url | prepend: site.baseurl }}" data-toggle="tooltip"
27
+ data-placement="top" title="{{ page.next.title }}">Next<span class="d-none d-md-inline">
28
+ Post</span> &rarr;</a>
29
+
30
+ <div>
31
+ <h2>Related Posts</h2>
32
+ {% for post in site.related_posts limit:3 %}
33
+ <hr />
34
+ <ul>
35
+ <li>
36
+ <h2><a href="{{ site.baseurl }}{{ post.url }}"> {{ post.title }}</a></h2>
37
+ </li>
38
+ </ul>
39
+ {% endfor %}
40
+ </div>
41
+ </div>
42
+ {% include disqus.html %}
43
+ </div>
@@ -1,14 +1,12 @@
1
1
  ---
2
- layout: default
2
+ layout: page
3
3
  title: About
4
4
  permalink: /about/
5
5
  weight: 2
6
6
  ---
7
7
 
8
+ <!-- begin about page -->
8
9
  <div class="fs-3">
9
- <!-- begin about page -->
10
-
11
10
  jekyll-casjaysdev theme
12
-
13
- <!-- end about page -->
14
11
  </div>
12
+ <!-- end about page -->
@@ -4,10 +4,10 @@ permalink: /blog/categories/
4
4
  ---
5
5
 
6
6
  {% for category in site.categories %}
7
- <h3>{{ category[0] }}</h3>
8
- <ul>
9
- {% for post in tag[1] %}
10
- <li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
11
- {% endfor %}
12
- </ul>
7
+ <h3>{{ category[0] }}</h3>
8
+ <ul>
9
+ {% for post in tag[1] %}
10
+ <li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
11
+ {% endfor %}
12
+ </ul>
13
13
  {% endfor %}
@@ -1,57 +1,61 @@
1
1
  ---
2
- layout: default
2
+ layout: page
3
3
  title: Blog
4
4
  permalink: /blog/
5
5
  description: Blog Posts
6
6
  weight: 99
7
7
  ---
8
8
 
9
- {% if site.blog.enabled == true %} {% for post in site.posts %} {% if
10
- post.author %} {% assign blog_author = post.author %} {% elsif site.author.name
11
- %} {% assign blog_author = site.author.name %} {% endif %} {% if post.site %} {%
12
- assign author_site = post.site %} {% elsif site.author.site %} {% assign
13
- author_site = site.author.site %} {% else %} {% assign author_site = blog_author
14
- | prepend: 'http://github.com/' %} {% endif %}
15
- <div class="row">
16
- <div class="col-med-3">
17
- <div class="card border-success mb-3 vh-20">
18
- <div class="card-header bg-transparent border-success">
19
- <a
20
- href="{{ post.url | prepend: site.baseurl }}"
21
- class="post-title"
22
- style="font-size: 30px"
23
- >
24
- {{ post.title | upcase }}
25
- </a>
26
- </div>
27
- <div class="card-body text-danger">
28
- <article style="font-size: 18px">
29
- <p class="card-text">{{ post.excerpt | markdownify }}</p>
30
- </article>
31
- </div>
32
- <div class="card-footer bg-transparent border-success">
33
- <span class="post-date">
34
- <a href="{{ post.url | prepend: site.baseurl }}">
35
- ({% include read_time.html content=post.content %}) - Read more
36
- <i class="fa fa-plus-circle" aria-hidden="true"> </i>
37
- </a>
38
- </span>
9
+ {% if site.blog.enabled == true %}
10
+ <div class="clearfix">
11
+ <div class="container text-center">
12
+ <div class="row">
13
+ {% for post in site.posts %}
14
+ {% if post.author %}
15
+ {% assign blog_author = post.author %}
16
+ {% elsif site.author.name %}
17
+ {% assign blog_author = site.author.name %}
18
+ {% endif %}
19
+ {% if post.site %}
20
+ {% assign author_site = post.site %}
21
+ {% elsif site.author.site %}
22
+ {% assign author_site = site.author.site %}
23
+ {% else %}
24
+ {% assign author_site = blog_author | prepend: '{{ site.blog.prepend }}' %}
25
+ {% endif %}
26
+ <div class="col-md-6 cl-mr-2 h-50">
27
+ <div class="card h-100 border-success mb-3">
28
+ <div class="card-header bg-transparent border-success">
29
+ <a href="{{ post.url | prepend: site.baseurl }}" class="post-title" style="font-size: 20px" >
30
+ {{ post.title | upcase }}</a>
31
+ </div>
32
+ <div class="card-body text-danger" style="height: 12rem;">
33
+ <article style="font-size: 18px">
34
+ <p class="card-text">{{ post.excerpt | markdownify }}</p>
35
+ </article>
36
+ </div>
37
+ <div class="border-warn">
38
+ <div class="card-footer bg-transparent border-success">
39
+ <span class="post-date">
40
+ <a href="{{ post.url | prepend: site.baseurl }}"> ({% include read_time.html content=post.content %})<br />
41
+ Read more <i class="fa fa-plus-circle" aria-hidden="true"> </i> </a>
42
+ </span>
43
+ <br />
44
+ Posted by <a href="{{ author_site }}">{{ blog_author }} </a>
45
+ </div>
46
+ </div>
39
47
  <br />
40
- Posted by <a href="{{ author_site }}">{{ blog_author }} </a>
41
- </div>
42
- <br />
43
- {{ post.date | date: '%B %d, %Y @ %H:%M' }}
44
- <div class="card-footer bg-transparent border-danger">
45
- {% if site.disqus %}
46
- <a href="{{ post.url | prepend: site.baseurl }}#disqus_thread">
47
- <i class="fa fa-comments" aria-hidden="true"></i> Comment
48
- </a>
49
- {% endif %}
48
+ {{ post.date | date: '%B %d, %Y @ %H:%M' }}
49
+ <div class="card-footer bg-transparent border-danger">
50
+ {% if site.disqus %}
51
+ <a href="{{ post.url | prepend: site.baseurl }}#disqus_thread"><i class="fa fa-comments" aria-hidden="true"></i> Comment</a>
52
+ {% endif %}
53
+ </div>
50
54
  </div>
51
55
  </div>
56
+ {% endfor %}
52
57
  </div>
53
- {% endfor %}
54
- <!-- Blog is disabled -->
55
- {% else %}
56
58
  </div>
59
+ </div>
57
60
  {% endif %}
61
+
@@ -4,10 +4,10 @@ permalink: /blog/tags/
4
4
  ---
5
5
 
6
6
  {% for tag in site.tags %}
7
- <h2>{{ tag[0] }}</h2>
8
- <ul>
9
- {% for post in tag[1] %}
10
- <li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
11
- {% endfor %}
12
- </ul>
7
+ <h2>{{ tag[0] }}</h2>
8
+ <ul>
9
+ {% for post in tag[1] %}
10
+ <li><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></li>
11
+ {% endfor %}
12
+ </ul>
13
13
  {% endfor %}
@@ -1,5 +1,5 @@
1
1
  ---
2
- layout: default
2
+ layout: page
3
3
  title: Contact
4
4
  permalink: /contact/
5
5
  description: Have questions? I have answers.
@@ -8,166 +8,68 @@ weight: 3
8
8
  enabled:
9
9
  ---
10
10
 
11
- {% if site.form.enabled == true %}
12
11
  <div class="text-center">
13
- <h2>Want to get in touch?</h2>
14
- <br />
15
- <p>
16
- Fill out the form below to send me a message<br />
17
- and I will get back to you as soon as possible!
12
+ <!-- begin contact page -->
13
+ {% if site.form.enabled == true %}
14
+ <h2>Want to get in touch?</h2><br />
15
+ <p>
16
+ Fill out the form below to send me a message<br />
17
+ and I will get back to you as soon as possible!<br />
18
+ </p>
19
+ <br />
20
+ <fieldset>
21
+ {% if site.form.formspree.enabled == true %}
22
+ <!-- begin Form Spree -->
23
+ <form action="{{ site.form.formspree.submit_url }}/{{ site.form.formspree.code }}" method="POST">
24
+ <label for="stacked-name">Your Name:</label><br />
25
+ <input type="text" name="name" id="stacked-name" placeholder="Your Name" required=""/>
26
+ <span class="pure-form-message">This is a required field.</span><br />
27
+ <label for="stacked-email">Your email:</label><br />
28
+ <input type="email" name="email" id="stacked-email" placeholder="Your Email" required=""/>
29
+ <span class="pure-form-message">This is a required field.</span><br />
30
+ <label for="stacked-message">Your Message:</label><br />
31
+ <textarea class="stacked-message" name="message" placeholder="What is your message?" required=""></textarea>
32
+ <span class="pure-form-message">This is a required field.</span><br />
33
+ <!-- your other form fields go here -->
34
+ </form>
35
+ <!-- end Form Spree -->
36
+ {% elsif site.form.formmail.enabled == true %}
37
+ <form action="{{ site.form.formmail.submit_url }}" method="POST" class="contact-form">
38
+ <input type="hidden" name="print_config" value="subject,Name,message" />
39
+ <input type="hidden" name="required" value="{{ site.form.formmail.fields.required }}"/>
40
+ <input type="hidden" name="recipient" value="{{ site.form.formmail.recipient }}"/>
41
+ <input type="hidden" name="subject" value="{{ site.form.formmail.subject }}"/>
42
+ <input type="hidden" name="title" value="{{ site.form.formmail.title }}"/>
43
+ <input type="hidden" name="env_report" value="{{ site.form.formmail.env }}"/>
44
+ <input type="hidden" name="background" value="{{ site.form.formmail.theme.background }}"/>
45
+ <input type="hidden" name="bgcolor" value="{{ site.form.formmail.theme.bgcolor }}"/>
46
+ <input type="hidden" name="text_color" value="{{ site.form.formmail.theme.text_color }}"/>
47
+ <input type="hidden" name="link_color" value="{{ site.form.formmail.theme.link_color }}"/>
48
+ <input type="hidden" name="vlink_color" value="{{ site.form.formmail.theme.vlink_color }}"/>
49
+ <input type="hidden" name="alink_color" value="{{ site.form.formmail.theme.alink_color }}"/>
50
+ <input type="hidden" name="return_link_url" value="{{ site.form.formmail.return_link.url }}"/>
51
+ <input type="hidden" name="return_link_title" value="{{ site.form.formmail.return_link.title }}"/>
52
+ <label for="stacked-name">Your Name:</label><br />
53
+ <input type="text" name="{{ site.form.formmail.fields.name }}" id="stacked-name" placeholder="Your Name" required=""/>
54
+ <span class="pure-form-message">This is a required field.</span><br />
55
+ <label for="stacked-email">Your email:</label><br />
56
+ <input type="email" name="{{ site.form.formmail.fields.email }}" id="stacked-email" placeholder="Your Email" required=""/>
57
+ <span class="pure-form-message">This is a required field.</span><br />
58
+ <label for="stacked-message">Your Message:</label><br />
59
+ <textarea class="stacked-message" name="{{ site.form.formmail.fields.message }}" placeholder="What is your message?" required=""></textarea>
60
+ <span class="pure-form-message">This is a required field.</span><br />
61
+ <button type="submit" class="btn btn-primary btn-lg" id="sendMessageButton">Send Message</button>
62
+ </form>
63
+ </fieldset>
64
+ {% else %}
65
+ <p class="fs-2">
66
+ The owner of this site has not enabled the contact form
18
67
  </p>
19
- <br />
20
- <fieldset>
21
- {% if site.form.type == "formspree" %}
22
- <form
23
- action="{{ site.form.formspree.submit_url }}/{{ site.form.formspree.code }}"
24
- method="POST"
25
- >
26
- <label for="stacked-name">Your Name:</label><br />
27
- <input
28
- type="text"
29
- name="name"
30
- id="stacked-name"
31
- placeholder="Your Name"
32
- required=""
33
- />
34
- <span class="pure-form-message">This is a required field.</span><br />
35
-
36
- <label for="stacked-email">Your email:</label><br />
37
- <input
38
- type="email"
39
- name="email"
40
- id="stacked-email"
41
- placeholder="Your Email"
42
- required=""
43
- />
44
- <span class="pure-form-message">This is a required field.</span><br />
45
-
46
- <label for="stacked-message">Your Message:</label><br />
47
- <textarea
48
- class="stacked-message"
49
- name="message"
50
- placeholder="What is your message?"
51
- required=""
52
- ></textarea>
53
- <span class="pure-form-message">This is a required field.</span><br />
54
- <!-- your other form fields go here -->
55
- </form>
56
- <!-- End Form Spree -->
57
-
58
- {% elsif site.form.type == "formmail" %}
59
- <form
60
- action="{{ site.form.formmail.submit_url }}"
61
- method="POST"
62
- class="contact-form"
63
- >
64
- <input type="hidden" name="print_config" value="subject,Name,message" />
65
- <input
66
- type="hidden"
67
- name="required"
68
- value="{{ site.form.formmail.fields.required }}"
69
- />
70
- <input
71
- type="hidden"
72
- name="recipient"
73
- value="{{ site.form.formmail.recipient }}"
74
- />
75
- <input
76
- type="hidden"
77
- name="subject"
78
- value="{{ site.form.formmail.subject }}"
79
- />
80
- <input
81
- type="hidden"
82
- name="title"
83
- value="{{ site.form.formmail.title }}"
84
- />
85
- <input
86
- type="hidden"
87
- name="env_report"
88
- value="{{ site.form.formmail.env }}"
89
- />
90
- <input
91
- type="hidden"
92
- name="background"
93
- value="{{ site.form.formmail.theme.background }}"
94
- />
95
- <input
96
- type="hidden"
97
- name="bgcolor"
98
- value="{{ site.form.formmail.theme.bgcolor }}"
99
- />
100
- <input
101
- type="hidden"
102
- name="text_color"
103
- value="{{ site.form.formmail.theme.text_color }}"
104
- />
105
- <input
106
- type="hidden"
107
- name="link_color"
108
- value="{{ site.form.formmail.theme.link_color }}"
109
- />
110
- <input
111
- type="hidden"
112
- name="vlink_color"
113
- value="{{ site.form.formmail.theme.vlink_color }}"
114
- />
115
- <input
116
- type="hidden"
117
- name="alink_color"
118
- value="{{ site.form.formmail.theme.alink_color }}"
119
- />
120
- <input
121
- type="hidden"
122
- name="return_link_url"
123
- value="{{ site.form.formmail.return_link.url }}"
124
- />
125
- <input
126
- type="hidden"
127
- name="return_link_title"
128
- value="{{ site.form.formmail.return_link.title }}"
129
- />
130
-
131
- <label for="stacked-name">Your Name:</label><br />
132
- <input
133
- type="text"
134
- name="{{ site.form.formmail.fields.name }}"
135
- id="stacked-name"
136
- placeholder="Your Name"
137
- required=""
138
- />
139
- <span class="pure-form-message">This is a required field.</span><br />
140
-
141
- <label for="stacked-email">Your email:</label><br />
142
- <input
143
- type="email"
144
- name="{{ site.form.formmail.fields.email }}"
145
- id="stacked-email"
146
- placeholder="Your Email"
147
- required=""
148
- />
149
- <span class="pure-form-message">This is a required field.</span><br />
150
-
151
- <label for="stacked-message">Your Message:</label><br />
152
- <textarea
153
- class="stacked-message"
154
- name="{{ site.form.formmail.fields.message }}"
155
- placeholder="What is your message?"
156
- required=""
157
- ></textarea>
158
- <span class="pure-form-message">This is a required field.</span><br />
159
- {% endif %}
160
-
161
- <button
162
- type="submit"
163
- class="btn btn-primary btn-lg"
164
- id="sendMessageButton"
165
- >
166
- Send Message
167
- </button>
168
- </form>
169
- </fieldset>
68
+ {% endif %}
170
69
  {% else %}
171
- <!-- Contact form is disabled -->
70
+ <p class="fs-2">
71
+ The owner of this site has not enabled the contact form
72
+ </p>
73
+ {% endif %}
74
+ <!-- begin contact page -->
172
75
  </div>
173
- {% endif %}
data/_pages/index.html CHANGED
@@ -5,15 +5,110 @@ permalink: /
5
5
  weight: 0
6
6
  ---
7
7
 
8
- <div class="fs-3">
8
+ <div>
9
9
  <!-- begin main content -->
10
10
 
11
- Uses the jekyll-casjaysdev theme -
12
- <a href="https://github.com/casjay-templates/jekyll-site"
13
- >jekyll-casjaysdev</a
14
- >
15
- <br />
16
- Currently running the {{ site.theme }} theme
11
+ Currently running the {{ site.custom_theme.name }} theme
12
+
13
+ <p>
14
+ Below is your request from https://lorum.casjay.vercel.app/paragraphs/200
15
+
16
+ A twist can hardly be considered a terbic burglar without also being a daughter.
17
+ A deficit is a mailbox's barber.
18
+ The archer of a clef becomes an uncashed ticket.
19
+
20
+ Authors often misinterpret the arm as a scatty heron, when in actuality it feels more like a horrid chick.
21
+ This is not to discredit the idea that eggs are chunky factories.
22
+ The literature would have us believe that a southward vessel is not but an oil.
23
+ A trail can hardly be considered a garish selection without also being a philosophy.
24
+ A worm of the drama is assumed to be a clausal goal.
25
+
26
+ It's an undeniable fact, really; the hoe of a library becomes a fraudful attention.
27
+ The station of a head becomes a piney cup.
28
+ Unfortunately, that is wrong; on the contrary, a distrait rabbi without compositions is truly a tortoise of cooing peanuts.
29
+
30
+ They were lost without the gummy psychology that composed their parcel.
31
+ What we don't know for sure is whether or not a leopard is the afternoon of a swamp.
32
+ In ancient times their team was, in this moment, a harnessed mayonnaise.
33
+ Their regret was, in this moment, a dimply target.
34
+ In modern times skis are plummy tauruses.
35
+
36
+ A substance sees a dream as a scincoid cellar.
37
+ Framed in a different way, an approval is a cirrate liquid.
38
+ A bulldozer can hardly be considered an unfunded uganda without also being a parsnip.
39
+ The digestion is an industry.
40
+ Their pine was, in this moment, a ventose dollar.
41
+
42
+ We can assume that any instance of an earth can be construed as a shredless certification.
43
+ This is not to discredit the idea that some posit the prescribed vise to be less than dewlapped.
44
+ They were lost without the gaudy liquor that composed their jaw.
45
+ We can assume that any instance of a viola can be construed as a perverse address.
46
+
47
+ A trout can hardly be considered a shining neck without also being an arithmetic.
48
+ One cannot separate suedes from mammoth probations.
49
+ An unsown crime is a click of the mind.
50
+ We can assume that any instance of a supermarket can be construed as a broody kenya.
51
+ A jarring albatross is a bone of the mind.
52
+
53
+ The quarters could be said to resemble seasick c-clamps.
54
+ What we don't know for sure is whether or not a regnant report's advertisement comes with it the thought that the felsic mountain is a margin.
55
+ Their sleep was, in this moment, an ungyved british.
56
+
57
+ Nowhere is it disputed that the bannered tendency reveals itself as a misused macrame to those who look.
58
+ Some abrupt forms are thought of simply as parallelograms.
59
+ The meteorology is a horn.
60
+ Unfortunately, that is wrong; on the contrary, a widish debt without sentences is truly a hourglass of needful creators.
17
61
 
62
+ The humor of a car becomes a whacking orange.
63
+ The points could be said to resemble zany stingers.
64
+ The handless hose reveals itself as an unused flood to those who look.
65
+ An asia is a rest's bangle.
66
+
67
+ A narcissus is the cauliflower of a worm.
68
+ A fridge of the word is assumed to be a ferine justice.
69
+ The literature would have us believe that a footsore postage is not but a stove.
70
+
71
+ The college is a preface.
72
+ Some posit the harried study to be less than doglike.
73
+ The oyster is a ferryboat.
74
+
75
+ Some posit the chin amusement to be less than zoning.
76
+ Polos are softwood chiefs.
77
+ In ancient times plantations are sunken surnames.
78
+
79
+ Unfortunately, that is wrong; on the contrary, we can assume that any instance of a samurai can be construed as a withdrawn beet.
80
+ One cannot separate brains from mumchance acts.
81
+ A crab can hardly be considered a jasp bomber without also being a velvet.
82
+
83
+ Authors often misinterpret the paper as a starving chin, when in actuality it feels more like a diverse chest.
84
+ A provoked carnation's libra comes with it the thought that the besieged sense is a confirmation.
85
+ Few can name a furthest pumpkin that isn't an anguine satin.
86
+ Airports are mazy potatos.
87
+
88
+ A certain wrist is a mattock of the mind.
89
+ Few can name a blaring stepdaughter that isn't a mothy ferryboat.
90
+ A mongrel output's gateway comes with it the thought that the shadeless pastor is an innocent.
91
+
92
+ Though we assume the latter, the comma of a jail becomes a fiercest office.
93
+ The creek of a sunshine becomes a plucky periodical.
94
+ One cannot separate commands from shingly airbuses.
95
+
96
+ However, a rugby is the minute of a pheasant.
97
+ A face can hardly be considered a knightly inventory without also being a newsstand.
98
+ Far from the truth, a satin is the balinese of a great-grandfather.
99
+
100
+ They were lost without the unbreathed footnote that composed their shallot.
101
+ An icebreaker sees a gallon as an oily swedish.
102
+ To be more specific, the kitty is a helmet.
103
+ A toilet is a letter from the right perspective.
104
+ Few can name a moldy bagel that isn't a hatching flood.
105
+
106
+ A william is an onion from the right perspective.
107
+ Gangly slopes show us how tongues can be yugoslavians.
108
+ Before fruits, pimples were only professors.
109
+ The chaffless education reveals itself as a pygmoid alarm to those who look.
110
+ </p>
111
+
112
+ <br />
18
113
  <!-- begin main content -->
19
114
  </div>
data/_pages/rss/index.xml CHANGED
@@ -1,4 +1,5 @@
1
1
  ---
2
+ layout: none
2
3
  permalink: /rss
3
4
  ---
4
5
  <?xml version="1.0" encoding="UTF-8"?>