jekyll-theme-horizon-flow 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +675 -0
  4. data/_config.yml +103 -0
  5. data/_includes/404.html +26 -0
  6. data/_includes/footer.html +104 -0
  7. data/_includes/header.html +23 -0
  8. data/_includes/read_time.html +39 -0
  9. data/_includes/toc.html +182 -0
  10. data/_layouts/archive.html +82 -0
  11. data/_layouts/categories.html +85 -0
  12. data/_layouts/default.html +26 -0
  13. data/_layouts/home.html +58 -0
  14. data/_layouts/post.html +73 -0
  15. data/_layouts/search.html +45 -0
  16. data/_layouts/tags.html +77 -0
  17. data/_posts/2021-01-01-markdown-test-page.md +179 -0
  18. data/_posts/2022-01-18-pirates.md +44 -0
  19. data/_posts/2022-06-21-leopards.md +42 -0
  20. data/_posts/2022-12-12-chatgpt-testpost-all-markdown-elements.md +121 -0
  21. data/_posts/2023-06-01-getting-started-with-jekyll.md +49 -0
  22. data/_posts/2023-06-03-customizing-your-jekyll-site.md +25 -0
  23. data/_posts/2023-06-06-welcome-to-jekyll.md +29 -0
  24. data/_posts/2023-07-13-title-for-champions.md +284 -0
  25. data/_sass/default/_base.scss +31 -0
  26. data/_sass/default/_footer.scss +162 -0
  27. data/_sass/default/_header.scss +62 -0
  28. data/_sass/external/_highlighter_rougify_base16dark.scss +84 -0
  29. data/_sass/external/_normalize.scss +349 -0
  30. data/_sass/functions/_mixins.scss +192 -0
  31. data/_sass/functions/_values.scss +21 -0
  32. data/_sass/jekyll-theme-horizon-flow.scss +16 -0
  33. data/_sass/layouts/_archive.scss +89 -0
  34. data/_sass/layouts/_categories.scss +93 -0
  35. data/_sass/layouts/_home.scss +120 -0
  36. data/_sass/layouts/_post.scss +322 -0
  37. data/_sass/layouts/_search.scss +66 -0
  38. data/_sass/layouts/_tags.scss +91 -0
  39. data/assets/search.json +20 -0
  40. data/assets/style.scss +6 -0
  41. metadata +182 -0
@@ -0,0 +1,58 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <main id="home">
6
+ <section>
7
+ {% for post in paginator.posts %}
8
+ <article class="single_article">
9
+ <a href="{{ post.url }}"><h3>{{ post.title }}</h3></a>
10
+ <p class="supplements">
11
+ <span>
12
+ <i class="fa fa-calendar"></i> {{ post.date | date: "%B %d, %Y" }}
13
+ </span>
14
+ <span class="supplements-sep"></span>
15
+ <span class="reading-time" title="Estimated read time">
16
+ {% include read_time.html %}
17
+ </span>
18
+ {% if post.categories != nil and post.categories.size > 0 %}
19
+ <span class="supplements-sep"></span>
20
+ <span class="supplements-category">
21
+ <i class="fa fa-bars"></i>
22
+ {% for category in post.categories %}
23
+ <a href="/categories#{{ category | slugify }}">{{ category }}</a>{% if forloop.last == false %},{% endif %}
24
+ {% endfor %}
25
+ </span>
26
+ {% endif %}
27
+ {% if post.tags != nil and post.tags.size > 0 %}
28
+ <span class="supplements-sep"></span>
29
+ <span>
30
+ <i class="fa fa-tags"></i>
31
+ {% for tag in post.tags %}
32
+ <a href="/tags/{{ tag | slugify }}">{{ tag }}</a>{% if forloop.last == false %},{% endif %}
33
+ {% endfor %}
34
+ </span>
35
+ {% endif %}
36
+
37
+
38
+ </p>
39
+ <p class="summary">
40
+ {% comment %}{{ post.excerpt }}{% endcomment %}
41
+ {{ post.content | markdownify | strip_html | truncatewords: 50 }}
42
+ </p>
43
+
44
+ </article>
45
+ {% endfor %}
46
+
47
+ <!-- Pagination links -->
48
+ <div class="pagination">
49
+ {% if paginator.previous_page %}
50
+ <a class="previous" href="{{ paginator.previous_page_path }}"><span class="spanprevious"><i class="arrow left" title="previous page"></i></span></a>
51
+ {% endif %}
52
+ <p class="page_count">{{ paginator.page }} / {{ paginator.total_pages }}</p>
53
+ {% if paginator.next_page %}
54
+ <a class="next" href="{{ paginator.next_page_path }}"><span class="spannext"><i class="arrow right" title="next page"></i></span></a>
55
+ {% endif %}
56
+ </div>
57
+ </section>
58
+ </main>
@@ -0,0 +1,73 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <main id="post">
6
+ <article>
7
+ {% if page.display_toc %}
8
+ <div class="toc">
9
+ <input type="checkbox" id="tocMenuButton">
10
+ <label for="tocMenuButton" id="tocMenuButtonLabel">
11
+ <i class="fa fa-bars"></i>
12
+ </label>
13
+ <div id="tocContainer">
14
+ <h1>TOC</h1>
15
+ {% include toc.html html=content %}
16
+ </div>
17
+ </div>
18
+ {% endif %}
19
+ {% if page.no_header != true %}
20
+ <div class="post_header">
21
+ <h1>{{page.title}}</h1>
22
+ <h3>{{page.subtitle}}</h3>
23
+
24
+
25
+ {% if page.show_supplements != false %}
26
+ <p class="supplements">
27
+ <span>
28
+ <i class="fa fa-calendar"></i> {{ page.date | date: "%B %d, %Y" }}
29
+ </span>
30
+ <span class="supplements-sep"></span>
31
+ <span class="reading-time" title="Estimated read time">
32
+ {% include read_time.html %}
33
+ </span>
34
+ {% if page.categories != nil and page.categories.size > 0 %}
35
+ <span class="supplements-sep"></span>
36
+ <span class="supplements-category">
37
+ <i class="fa fa-bars"></i>
38
+ {% for category in page.categories %}
39
+ <a href="/categories#{{ category | slugify }}">{{ category }}</a>{% if forloop.last == false %},{% endif %}
40
+ {% endfor %}
41
+ </span>
42
+ {% endif %}
43
+ {% if page.tags != nil and page.tags.size > 0 %}
44
+ <span class="supplements-sep"></span>
45
+ <span>
46
+ <i class="fa fa-tags"></i>
47
+ {% for tag in page.tags %}
48
+ <a href="/tags#{{ tag | slugify }}">{{ tag }}</a>{% if forloop.last == false %},{% endif %}
49
+ {% endfor %}
50
+ </span>
51
+ {% endif %}
52
+ {%- if page.last_modified_at -%}
53
+ <br /> <br />
54
+ <span class="last_modified_at">{% if site.data.configurable_lables.last_modified_at %}{{site.data.configurable_lables.last_modified_at}}{% else %}Last Modified at:{% endif %} {{ page.last_modified_at }}</span>
55
+ {% endif %}
56
+ </p>
57
+ {% endif %}
58
+
59
+
60
+ </div>
61
+ {% endif %}
62
+ <div class ="post_content">
63
+ {{content}}
64
+ {% if page.toTop != false %}
65
+ <a href="#" id="toTopButton">
66
+ <i class="fa fa-arrow-circle-o-up"></i>
67
+ </a>
68
+ {% endif %}
69
+ </div>
70
+
71
+
72
+ </article>
73
+ </main>
@@ -0,0 +1,45 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+
6
+ <script>
7
+ /*!
8
+ * Simple-Jekyll-Search
9
+ * Copyright 2015-2020, Christian Fei
10
+ * Licensed under the MIT License.
11
+ */
12
+ !function(){"use strict";var f={compile:function(r){return i.template.replace(i.pattern,function(t,e){var n=i.middleware(e,r[e],i.template);return void 0!==n?n:r[e]||t})},setOptions:function(t){i.pattern=t.pattern||i.pattern,i.template=t.template||i.template,"function"==typeof t.middleware&&(i.middleware=t.middleware)}};const i={pattern:/\{(.*?)\}/g,template:"",middleware:function(){}};var n=function(t,e){var n=e.length,r=t.length;if(n<r)return!1;if(r===n)return t===e;t:for(var i=0,o=0;i<r;i++){for(var u=t.charCodeAt(i);o<n;)if(e.charCodeAt(o++)===u)continue t;return!1}return!0},e=new function(){this.matches=function(t,e){return n(e.toLowerCase(),t.toLowerCase())}},r=new function(){this.matches=function(e,t){return!!e&&(e=e.trim().toLowerCase(),(t=t.trim().toLowerCase()).split(" ").filter(function(t){return 0<=e.indexOf(t)}).length===t.split(" ").length)}},d={put:function(t){if(l(t))return a(t);if(function(t){return Boolean(t)&&"[object Array]"===Object.prototype.toString.call(t)}(t))return function(n){const r=[];s();for(let t=0,e=n.length;t<e;t++)l(n[t])&&r.push(a(n[t]));return r}(t);return undefined},clear:s,search:function(t){return t?function(e,n,r,i){const o=[];for(let t=0;t<e.length&&o.length<i.limit;t++){var u=function(t,e,n,r){for(const i in t)if(!function(n,r){for(let t=0,e=r.length;t<e;t++){var i=r[t];if(new RegExp(i).test(n))return!0}return!1}(t[i],r.exclude)&&n.matches(t[i],e))return t}(e[t],n,r,i);u&&o.push(u)}return o}(u,t,c.searchStrategy,c).sort(c.sort):[]},setOptions:function(t){c=t||{},c.fuzzy=t.fuzzy||!1,c.limit=t.limit||10,c.searchStrategy=t.fuzzy?e:r,c.sort=t.sort||o,c.exclude=t.exclude||[]}};function o(){return 0}const u=[];let c={};function s(){return u.length=0,u}function l(t){return Boolean(t)&&"[object Object]"===Object.prototype.toString.call(t)}function a(t){return u.push(t),u}c.fuzzy=!1,c.limit=10,c.searchStrategy=c.fuzzy?e:r,c.sort=o,c.exclude=[];var p={load:function(t,e){const n=window.XMLHttpRequest?new window.XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");n.open("GET",t,!0),n.onreadystatechange=h(n,e),n.send()}};function h(e,n){return function(){if(4===e.readyState&&200===e.status)try{n(null,JSON.parse(e.responseText))}catch(t){n(t,null)}}}var m=function y(t){if(!(e=t)||!("undefined"!=typeof e.required&&e.required instanceof Array))throw new Error("-- OptionsValidator: required options missing");var e;if(!(this instanceof y))return new y(t);const r=t.required;this.getRequiredOptions=function(){return r},this.validate=function(e){const n=[];return r.forEach(function(t){"undefined"==typeof e[t]&&n.push(t)}),n}},w={merge:function(t,e){const n={};for(const r in t)n[r]=t[r],"undefined"!=typeof e[r]&&(n[r]=e[r]);return n},isJSON:function(t){try{return t instanceof Object&&JSON.parse(JSON.stringify(t))?!0:!1}catch(e){return!1}}};!function(t){let i={searchInput:null,resultsContainer:null,json:[],success:Function.prototype,searchResultTemplate:'<div class="single_result"><div class="search_findresults"><span class="search_date"><a href="{url}"><i class="search_day">{date_day}</i></a><a href="{url}">{date_my}</a></span><span class="search_summary"><h3><a href="{url}">{title}</a></h3>{summary}</span></div></div>',templateMiddleware:Function.prototype,sortMiddleware:function(){return 0},noResultsText:"No results found",limit:10,fuzzy:!1,debounceTime:null,exclude:[]},n;const e=function(t,e){e?(clearTimeout(n),n=setTimeout(t,e)):t.call()};var r=["searchInput","resultsContainer","json"];const o=m({required:r});function u(t){d.put(t),i.searchInput.addEventListener("input",function(t){-1===[13,16,20,37,38,39,40,91].indexOf(t.which)&&(c(),e(function(){l(t.target.value)},i.debounceTime))})}function c(){i.resultsContainer.innerHTML=""}function s(t){i.resultsContainer.innerHTML+=t}function l(t){var e;(e=t)&&0<e.length&&(c(),function(e,n){var r=e.length;if(0===r)return s(i.noResultsText);for(let t=0;t<r;t++)e[t].query=n,s(f.compile(e[t]))}(d.search(t),t))}function a(t){throw new Error("SimpleJekyllSearch --- "+t)}t.SimpleJekyllSearch=function(t){var n;0<o.validate(t).length&&a("You must specify the following required options: "+r),i=w.merge(i,t),f.setOptions({template:i.searchResultTemplate,middleware:i.templateMiddleware}),d.setOptions({fuzzy:i.fuzzy,limit:i.limit,sort:i.sortMiddleware,exclude:i.exclude}),w.isJSON(i.json)?u(i.json):(n=i.json,p.load(n,function(t,e){t&&a("failed to get JSON ("+n+")"),u(e)}));t={search:l};return"function"==typeof i.success&&i.success.call(t),t}}(window)}();
13
+ </script>
14
+
15
+
16
+
17
+ <!-- <div class="search_results">
18
+ <div class="single_result"><div class="search_findresults"><span class="search_date"><a href="{url}"><i class="search_day">{date_day}</i></a><a href="{url}">{date_my}</a></span><span class="search_summary"><h3><a href="{url}">{title}</a></h3>{summary}</span></div></div>
19
+ </div> -->
20
+
21
+ <!-- Html Elements for Search -->
22
+ <main id="search">
23
+ <section>
24
+ <h1>{% if site.data.configurable_lables.search_title %}{{site.data.configurable_lables.search_title}}{% else %}Search{% endif %}</h1>
25
+ <div class="input">
26
+ <input type="text" id="search-input" placeholder="Search ...">
27
+ </div>
28
+ <div class="search_results">
29
+ <div id="results-container"></div>
30
+ </div>
31
+
32
+ </section>
33
+ </main>
34
+
35
+ <!-- Script pointing to search-script.js -->
36
+ <!-- <script src="/path/to/search-script.js" type="text/javascript"></script> -->
37
+
38
+ <!-- Configuration -->
39
+ <script>
40
+ SimpleJekyllSearch({
41
+ searchInput: document.getElementById('search-input'),
42
+ resultsContainer: document.getElementById('results-container'),
43
+ json: '/assets/search.json'
44
+ })
45
+ </script>
@@ -0,0 +1,77 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <main id="tags">
6
+ <section>
7
+ <h1>{% if site.data.configurable_lables.tags_title %}{{site.data.configurable_lables.tags_title}}{% else %}Tags{% endif %}</h1>
8
+
9
+ <!-- Capture and sort tags by count -->
10
+ {% capture site_tags %}
11
+ {% for tag in site.tags %}
12
+ {{ tag[1].size | plus: 1000 }}&#x1F;{{ tag | first }}
13
+ {% unless forloop.last %}&#x1E;{% endunless %}
14
+ {% endfor %}
15
+ {% endcapture %}
16
+ {% assign sortedTags = site_tags | split: '&#x1E;' | sort | reverse %}
17
+
18
+ {% if sortedTags.size > 0 %}
19
+ <!-- Show all tags sorted by count -->
20
+ <div class="tags_all{% if site.layouts.tags.columns and site.layouts.tags.columns >= 1 and site.layouts.tags.columns <= 5 %}{{site.layouts.tags.columns}}{% else %}4{% endif %}">
21
+ <ul>
22
+ {% for tag in sortedTags %}
23
+ {% assign tagParts = tag | split: '&#x1F;' %}
24
+ {% assign tagName = tagParts[1] %}
25
+ {% assign tagCount = tagParts[0] | minus: 1000 %}
26
+ <li>
27
+ <a href="#{{ tagName }}">
28
+ <span class="tag_linktitle">{{ tagName }}</span>
29
+ <span class="tag_count">{{ tagCount }}</span>
30
+ </a>
31
+ </li>
32
+ {% endfor %}
33
+ </ul>
34
+ </div>
35
+ {% else %}
36
+ <!-- Display an empty list when sortedTags is empty -->
37
+ <div>
38
+ <ul>
39
+ <li>{% if site.data.configurable_lables.tags_found %}{{site.data.configurable_lables.tags_found}}{% else %}No tags available.{% endif %}</li>
40
+ </ul>
41
+ </div>
42
+ {% endif %}
43
+
44
+
45
+ <!-- Show posts for selected tag -->
46
+ <div class="tags_results">
47
+ {% if site.data.configurable_lables.tags_found %}{{site.data.configurable_lables.tags_found}}{% else %}Found Posts per selected Tag{% endif %}
48
+ <br /><br /><br /><br />
49
+
50
+ {% for tag in site.tags %}
51
+ <div id="{{ tag[0] }}" class="tag_posts">
52
+ <h2>{{ tag[0] }}</h2>
53
+
54
+ {% for post in tag[1] %}
55
+ <div class="tags_findresult">
56
+ <span class="tags_date">
57
+ <a href="{{ post.url }}">
58
+ <i class="tags_day">{{ post.date | date: "%d" }}</i>
59
+ </a>
60
+ <a href="{{ post.url }}">
61
+ <span>{{ post.date | date: "%b/%Y" }}</span>
62
+ </a>
63
+ </span>
64
+
65
+ <span class="tags_summary">
66
+ <h3>
67
+ <a href="{{ post.url }}">{{ post.title }}</a>
68
+ </h3>
69
+ {{ post.content | markdownify | strip_html | truncatewords: 50 }}
70
+ </span>
71
+ </div>
72
+ {% endfor %}
73
+ </div>
74
+ {% endfor %}
75
+ </div>
76
+ </section>
77
+ </main>
@@ -0,0 +1,179 @@
1
+ ---
2
+ layout: post
3
+ title: "Markdown Test Page"
4
+ date: 2021-01-01
5
+ tags: markdown test
6
+ subtitle: "copied from https://github.com/fullpipe/markdown-test-page/tree/master"
7
+ ---
8
+
9
+ # <a name="top"></a>Markdown Test Page
10
+
11
+ * [Headings](#Headings)
12
+ * [Paragraphs](#Paragraphs)
13
+ * [Blockquotes](#Blockquotes)
14
+ * [Lists](#Lists)
15
+ * [Horizontal rule](#Horizontal)
16
+ * [Table](#Table)
17
+ * [Code](#Code)
18
+ * [Inline elements](#Inline)
19
+
20
+ ***
21
+
22
+ # <a name="Headings"></a>Headings
23
+
24
+ # Heading one
25
+
26
+ Sint sit cillum pariatur eiusmod nulla pariatur ipsum. Sit laborum anim qui mollit tempor pariatur nisi minim dolor. Aliquip et adipisicing sit sit fugiat commodo id sunt. Nostrud enim ad commodo incididunt cupidatat in ullamco ullamco Lorem cupidatat velit enim et Lorem. Ut laborum cillum laboris fugiat culpa sint irure do reprehenderit culpa occaecat. Exercitation esse mollit tempor magna aliqua in occaecat aliquip veniam reprehenderit nisi dolor in laboris dolore velit.
27
+
28
+ ## Heading two
29
+
30
+ Aute officia nulla deserunt do deserunt cillum velit magna. Officia veniam culpa anim minim dolore labore pariatur voluptate id ad est duis quis velit dolor pariatur enim. Incididunt enim excepteur do veniam consequat culpa do voluptate dolor fugiat ad adipisicing sit. Labore officia est adipisicing dolore proident eiusmod exercitation deserunt ullamco anim do occaecat velit. Elit dolor consectetur proident sunt aliquip est do tempor quis aliqua culpa aute. Duis in tempor exercitation pariatur et adipisicing mollit irure tempor ut enim esse commodo laboris proident. Do excepteur laborum anim esse aliquip eu sit id Lorem incididunt elit irure ea nulla dolor et. Nulla amet fugiat qui minim deserunt enim eu cupidatat aute officia do velit ea reprehenderit.
31
+
32
+ ### Heading three
33
+
34
+ Voluptate cupidatat cillum elit quis ipsum eu voluptate fugiat consectetur enim. Quis ut voluptate culpa ex anim aute consectetur dolore proident voluptate exercitation eiusmod. Esse in do anim magna minim culpa sint. Adipisicing ipsum consectetur proident ullamco magna sit amet aliqua aute fugiat laborum exercitation duis et.
35
+
36
+ #### Heading four
37
+
38
+ Commodo fugiat aliqua minim quis pariatur mollit id tempor. Non occaecat minim esse enim aliqua adipisicing nostrud duis consequat eu adipisicing qui. Minim aliquip sit excepteur ipsum consequat laborum pariatur excepteur. Veniam fugiat et amet ad elit anim laborum duis mollit occaecat et et ipsum et reprehenderit. Occaecat aliquip dolore adipisicing sint labore occaecat officia fugiat. Quis adipisicing exercitation exercitation eu amet est laboris sunt nostrud ipsum reprehenderit ullamco. Enim sint ut consectetur id anim aute voluptate exercitation mollit dolore magna magna est Lorem. Ut adipisicing adipisicing aliqua ullamco voluptate labore nisi tempor esse magna incididunt.
39
+
40
+ ##### Heading five
41
+
42
+ Veniam enim esse amet veniam deserunt laboris amet enim consequat. Minim nostrud deserunt cillum consectetur commodo eu enim nostrud ullamco occaecat excepteur. Aliquip et ut est commodo enim dolor amet sint excepteur. Amet ad laboris laborum deserunt sint sunt aliqua commodo ex duis deserunt enim est ex labore ut. Duis incididunt velit adipisicing non incididunt adipisicing adipisicing. Ad irure duis nisi tempor eu dolor fugiat magna et consequat tempor eu ex dolore. Mollit esse nisi qui culpa ut nisi ex proident culpa cupidatat cillum culpa occaecat anim. Ut officia sit ea nisi ea excepteur nostrud ipsum et nulla.
43
+
44
+ ###### Heading six
45
+
46
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
47
+
48
+
49
+ [[Top]](#top)
50
+
51
+ # <a name="Paragraphs"></a>Paragraphs
52
+
53
+ Incididunt ex adipisicing ea ullamco consectetur in voluptate proident fugiat tempor deserunt reprehenderit ullamco id dolore laborum. Do laboris laboris minim incididunt qui consectetur exercitation adipisicing dolore et magna consequat magna anim sunt. Officia fugiat Lorem sunt pariatur incididunt Lorem reprehenderit proident irure. Dolore ipsum aliqua mollit ad officia fugiat sit eu aliquip cupidatat ipsum duis laborum laborum fugiat esse. Voluptate anim ex dolore deserunt ea ex eiusmod irure. Occaecat excepteur aliqua exercitation aliquip dolor esse eu eu.
54
+
55
+ Officia dolore laborum aute incididunt commodo nisi velit est est elit et dolore elit exercitation. Enim aliquip magna id ipsum aliquip consectetur ad nulla quis. Incididunt pariatur dolor consectetur cillum enim velit cupidatat laborum quis ex.
56
+
57
+ Officia irure in non voluptate adipisicing sit amet tempor duis dolore deserunt enim ut. Reprehenderit incididunt in ad anim et deserunt deserunt Lorem laborum quis. Enim aute anim labore proident laboris voluptate elit excepteur in. Ex labore nulla velit officia ullamco Lorem Lorem id do. Dolore ullamco ipsum magna dolor pariatur voluptate ipsum id occaecat ipsum. Dolore tempor quis duis commodo quis quis enim.
58
+
59
+ [[Top]](#top)
60
+
61
+ # <a name="Blockquotes"></a>Blockquotes
62
+
63
+ Ad nisi laborum aute cupidatat magna deserunt eu id laboris id. Aliquip nulla cupidatat sint ex Lorem mollit laborum dolor amet est ut esse aute. Nostrud ex consequat id incididunt proident ipsum minim duis aliqua ut ex et ad quis. Laborum sint esse cillum anim nulla cillum consectetur aliqua sit. Nisi excepteur cillum labore amet excepteur commodo enim occaecat consequat ipsum proident exercitation duis id in.
64
+
65
+ > Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
66
+
67
+ Labore ea magna Lorem consequat aliquip consectetur cillum duis dolore. Et veniam dolor qui incididunt minim amet laboris sit. Dolore ad esse commodo et dolore amet est velit ut nisi ea. Excepteur ea nulla commodo dolore anim dolore adipisicing eiusmod labore id enim esse quis mollit deserunt est. Minim ea culpa voluptate nostrud commodo proident in duis aliquip minim.
68
+
69
+ > Qui est sit et reprehenderit aute est esse enim aliqua id aliquip ea anim. Pariatur sint reprehenderit mollit velit voluptate enim consectetur sint enim. Quis exercitation proident elit non id qui culpa dolore esse aliquip consequat.
70
+
71
+ Ipsum excepteur cupidatat sunt minim ad eiusmod tempor sit.
72
+
73
+ > Deserunt excepteur adipisicing culpa pariatur cillum laboris ullamco nisi fugiat cillum officia. In cupidatat nulla aliquip tempor ad Lorem Lorem quis voluptate officia consectetur pariatur ex in est duis. Mollit id esse est elit exercitation voluptate nostrud nisi laborum magna dolore dolore tempor in est consectetur.
74
+
75
+ Adipisicing voluptate ipsum culpa voluptate id aute laboris labore esse fugiat veniam ullamco occaecat do ut. Tempor et esse reprehenderit veniam proident ipsum irure sit ullamco et labore ea excepteur nulla labore ut. Ex aute minim quis tempor in eu id id irure ea nostrud dolor esse.
76
+
77
+ [[Top]](#top)
78
+
79
+ # <a name="Lists"></a>Lists
80
+
81
+ ### Ordered List
82
+
83
+ 1. Longan
84
+ 2. Lychee
85
+ 3. Excepteur ad cupidatat do elit laborum amet cillum reprehenderit consequat quis.
86
+ Deserunt officia esse aliquip consectetur duis ut labore laborum commodo aliquip aliquip velit pariatur dolore.
87
+ 4. Marionberry
88
+ 5. Melon
89
+ - Cantaloupe
90
+ - Honeydew
91
+ - Watermelon
92
+ 6. Miracle fruit
93
+ 7. Mulberry
94
+
95
+ ### Unordered List
96
+
97
+ - Olive
98
+ - Orange
99
+ - Blood orange
100
+ - Clementine
101
+ - Papaya
102
+ - Ut aute ipsum occaecat nisi culpa Lorem id occaecat cupidatat id id magna laboris ad duis. Fugiat cillum dolore veniam nostrud proident sint consectetur eiusmod irure adipisicing.
103
+ - Passionfruit
104
+
105
+ [[Top]](#top)
106
+
107
+ # <a name="Horizontal"></a>Horizontal rule
108
+
109
+ In dolore velit aliquip labore mollit minim tempor veniam eu veniam ad in sint aliquip mollit mollit. Ex occaecat non deserunt elit laborum sunt tempor sint consequat culpa culpa qui sit. Irure ad commodo eu voluptate mollit cillum cupidatat veniam proident amet minim reprehenderit.
110
+
111
+ ***
112
+
113
+ In laboris eiusmod reprehenderit aliquip sit proident occaecat. Non sit labore anim elit veniam Lorem minim commodo eiusmod irure do minim nisi. Dolor amet cillum excepteur consequat sint non sint.
114
+
115
+ [[Top]](#top)
116
+
117
+ # <a name="Table"></a>Table
118
+
119
+ Duis sunt ut pariatur reprehenderit mollit mollit magna dolore in pariatur nulla commodo sit dolor ad fugiat. Laboris amet ea occaecat duis eu enim exercitation deserunt ea laborum occaecat reprehenderit. Et incididunt dolor commodo consequat mollit nisi proident non pariatur in et incididunt id. Eu ut et Lorem ea ex magna minim ipsum ipsum do.
120
+
121
+ | Table Heading 1 | Table Heading 2 | Center align | Right align | Table Heading 5 |
122
+ | :-------------- | :-------------- | :-------------: | --------------: | :-------------- |
123
+ | Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
124
+ | Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
125
+ | Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
126
+ | Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
127
+ | Item 1 | Item 2 | Item 3 | Item 4 | Item 5 |
128
+
129
+ Minim id consequat adipisicing cupidatat laborum culpa veniam non consectetur et duis pariatur reprehenderit eu ex consectetur. Sunt nisi qui eiusmod ut cillum laborum Lorem officia aliquip laboris ullamco nostrud laboris non irure laboris. Cillum dolore labore Lorem deserunt mollit voluptate esse incididunt ex dolor.
130
+
131
+ [[Top]](#top)
132
+
133
+ # <a name="Code"></a>Code
134
+
135
+ ## Inline code
136
+
137
+ Ad amet irure est magna id mollit Lorem in do duis enim. Excepteur velit nisi magna ea pariatur pariatur ullamco fugiat deserunt sint non sint. Duis duis est `code in text` velit velit aute culpa ex quis pariatur pariatur laborum aute pariatur duis tempor sunt ad. Irure magna voluptate dolore consectetur consectetur irure esse. Anim magna `<strong>in culpa qui officia</strong>` dolor eiusmod esse amet aute cupidatat aliqua do id voluptate cupidatat reprehenderit amet labore deserunt.
138
+
139
+ ## Highlighted
140
+
141
+ Et fugiat ad nisi amet magna labore do cillum fugiat occaecat cillum Lorem proident. In sint dolor ullamco ad do adipisicing amet id excepteur Lorem aliquip sit irure veniam laborum duis cillum. Aliqua occaecat minim cillum deserunt magna sunt laboris do do irure ea nostrud consequat ut voluptate ex.
142
+
143
+ ```go
144
+ package main
145
+
146
+ import (
147
+ "fmt"
148
+ "net/http"
149
+ )
150
+
151
+ func handler(w http.ResponseWriter, r *http.Request) {
152
+ fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
153
+ }
154
+
155
+ func main() {
156
+ http.HandleFunc("/", handler)
157
+ http.ListenAndServe(":8080", nil)
158
+ }
159
+ ```
160
+
161
+ Ex amet id ex aliquip id do laborum excepteur exercitation elit sint commodo occaecat nostrud est. Nostrud pariatur esse veniam laborum non sint magna sit laboris minim in id. Aliqua pariatur pariatur excepteur adipisicing irure culpa consequat commodo et ex id ad.
162
+
163
+ [[Top]](#top)
164
+
165
+ # <a name="Inline"></a>Inline elements
166
+
167
+ Sint ea anim ipsum ad commodo cupidatat do **exercitation** incididunt et minim ad labore sunt. Minim deserunt labore laboris velit nulla incididunt ipsum nulla. Ullamco ad laborum ea qui et anim in laboris exercitation tempor sit officia laborum reprehenderit culpa velit quis. **Consequat commodo** reprehenderit duis [irure](#!) esse esse exercitation minim enim Lorem dolore duis irure. Nisi Lorem reprehenderit ea amet excepteur dolor excepteur magna labore proident voluptate ipsum. Reprehenderit ex esse deserunt aliqua ea officia mollit Lorem nulla magna enim. Et ad ipsum labore enim ipsum **cupidatat consequat**. Commodo non ea cupidatat magna deserunt dolore ipsum velit nulla elit veniam nulla eiusmod proident officia.
168
+
169
+ ![Super wide](http://placekitten.com/1280/800)
170
+
171
+ *Proident sit veniam in est proident officia adipisicing* ea tempor cillum non cillum velit deserunt. Voluptate laborum incididunt sit consectetur Lorem irure incididunt voluptate nostrud. Commodo ut eiusmod tempor cupidatat esse enim minim ex anim consequat. Mollit sint culpa qui laboris quis consectetur ad sint esse. Amet anim anim minim ullamco et duis non irure. Sit tempor adipisicing ea laboris `culpa ex duis sint` anim aute reprehenderit id eu ea. Aute [excepteur proident](#!) Lorem minim adipisicing nostrud mollit ad ut voluptate do nulla esse occaecat aliqua sint anim.
172
+
173
+ ![Not so big](http://placekitten.com/480/400)
174
+
175
+ Incididunt in culpa cupidatat mollit cillum qui proident sit. In cillum aliquip incididunt voluptate magna amet cupidatat cillum pariatur sint aliqua est _enim **anim** voluptate_. Magna aliquip proident incididunt id duis pariatur eiusmod incididunt commodo culpa dolore sit. Culpa do nostrud elit ad exercitation anim pariatur non minim nisi **adipisicing sunt _officia_**. Do deserunt magna mollit Lorem commodo ipsum do cupidatat mollit enim ut elit veniam ea voluptate.
176
+
177
+ [![Manny Pacquiao](https://img.youtube.com/vi/s6bCmZmy9aQ/0.jpg)](https://youtu.be/s6bCmZmy9aQ)
178
+
179
+ Reprehenderit non eu quis in ad elit esse qui aute id [incididunt](#!) dolore cillum. Esse laboris consequat dolor anim exercitation tempor aliqua deserunt velit magna laboris. Culpa culpa minim duis amet mollit do quis amet commodo nulla irure.
@@ -0,0 +1,44 @@
1
+ ---
2
+ layout: post
3
+ title: "Pirates"
4
+ date: 2022-01-18
5
+ tags: pirates
6
+ subtitle: "gonna give ya hard time"
7
+ categories: asdf
8
+ ---
9
+
10
+ # The Legend of Pirates: Masters of the High Seas
11
+
12
+ Pirates have captured the imagination of people for centuries with their daring adventures, swashbuckling tales, and treasure hunts. These legendary figures of the high seas have left an indelible mark on history and popular culture. Let's set sail on a journey to explore the fascinating world of pirates.
13
+
14
+ ## A Pirate's Life
15
+
16
+ Pirates were seafaring outlaws who roamed the oceans during the Golden Age of Piracy, roughly spanning from the late 17th century to the early 18th century. Their lives were a mixture of danger and romance, filled with codes of honor, plunder, and fierce battles.
17
+
18
+ ## Pirate Flags
19
+
20
+ Pirates often flew distinctive flags to strike fear into their victims' hearts. The most famous of these flags was the Jolly Roger, a black flag adorned with skull and crossbones. Each pirate crew had its unique variation, and these flags became symbols of terror on the high seas.
21
+
22
+ ## Infamous Pirates
23
+
24
+ ### Blackbeard
25
+ One of the most notorious pirates in history, Blackbeard, whose real name was Edward Teach, terrorized the American colonies and the West Indies. He was known for his fearsome appearance, with slow-burning fuses woven into his beard.
26
+
27
+ ### Anne Bonny and Mary Read
28
+ These two women disguised themselves as men and joined pirate crews. Their stories are a testament to the equality of the high seas, where gender often took a backseat to skill and daring.
29
+
30
+ ## Pirate Lore
31
+
32
+ Pirates were known for their hidden treasure caches, and tales of buried loot have captured imaginations for generations. While the existence of such treasures remains largely a mystery, it adds to the mystique of pirate lore.
33
+
34
+ ## The End of an Era
35
+
36
+ The Golden Age of Piracy eventually came to an end as naval powers cracked down on piracy, and pirate strongholds were dismantled. Some pirates were captured, tried, and met their end on the gallows, while others vanished into obscurity or sought amnesty.
37
+
38
+ ## Pop Culture Influence
39
+
40
+ Pirates have left an enduring legacy in literature, movies, and folklore. Classics like Robert Louis Stevenson's "Treasure Island" and Disney's "Pirates of the Caribbean" franchise have kept the spirit of piracy alive in the modern age.
41
+
42
+ ## Conclusion
43
+
44
+ Pirates, with their daring exploits and enduring legends, continue to captivate our imaginations. Whether seen as ruthless criminals or romanticized heroes, pirates will forever remain an intriguing part of maritime history and a source of countless thrilling stories of adventure on the high seas.
@@ -0,0 +1,42 @@
1
+ ---
2
+ layout: post
3
+ title: "Leopards"
4
+ date: 2022-06-21
5
+ tags: animals test
6
+ subtitle: "As fast as possible..."
7
+ categories: update rest4 rest
8
+ ---
9
+
10
+ # The Magnificent Leopard
11
+
12
+ Leopards (*Panthera pardus*) are among the most iconic big cats in the world. These majestic creatures are known for their striking appearance and remarkable adaptability. Let's delve into the fascinating world of leopards.
13
+
14
+ ## Appearance
15
+
16
+ Leopards are easily recognizable due to their beautiful golden-yellow coats covered in distinctive black spots and rosettes. These spots help them blend seamlessly into their natural habitats, making them exceptional hunters.
17
+
18
+ ## Distribution
19
+
20
+ Leopards are incredibly adaptable and can be found in a wide range of habitats, from dense forests and grasslands to mountainous regions and deserts. They are the most widely distributed of all big cat species, with populations in Africa and parts of Asia.
21
+
22
+ ## Behavior
23
+
24
+ ### Solitary Predators
25
+
26
+ Leopards are solitary animals, known for their elusive nature. They are skilled hunters and primarily prey on a variety of animals, including impalas, gazelles, and even smaller mammals like hares. Leopards are famous for their ability to haul prey twice their body weight up into trees to avoid scavengers.
27
+
28
+ ### Territorial Nature
29
+
30
+ Each leopard establishes a territory that it defends vigorously against intruders. The size of their territory depends on factors such as food availability and gender, with males typically having larger ranges than females.
31
+
32
+ ## Conservation
33
+
34
+ Despite their adaptability and resilience, leopards face numerous threats in the wild. Habitat loss due to deforestation, human-wildlife conflict, and poaching for their beautiful fur are some of the major challenges they confront.
35
+
36
+ Efforts are being made worldwide to conserve leopard populations. This includes the establishment of protected areas and wildlife corridors, as well as promoting coexistence between leopards and local communities.
37
+
38
+ ## Conclusion
39
+
40
+ Leopards are a symbol of grace and power in the animal kingdom. Their striking appearance and unique behavior make them a subject of fascination for wildlife enthusiasts and researchers alike. As we strive to protect their habitats and ensure their survival, we must remember the vital role these magnificent creatures play in maintaining the balance of ecosystems.
41
+
42
+ Next time you catch a glimpse of a leopard, whether in the wild or in a documentary, take a moment to appreciate the beauty and resilience of this incredible big cat.
@@ -0,0 +1,121 @@
1
+ ---
2
+ layout: post
3
+ title: "Chatgpt Testpost all markdown elements"
4
+ date: 2022-12-12
5
+ tags: champion test
6
+ subtitle: "testing can be fun"
7
+ code_lines: false
8
+ categories: rest2
9
+ ---
10
+
11
+ # Markdown Test Post
12
+
13
+ This is a sample Markdown test post with various elements.
14
+
15
+ ## Text Formatting
16
+
17
+ You can use *italic*, **bold**, or ***both*** text formatting.
18
+
19
+ ## Lists
20
+
21
+ ### Ordered List
22
+ 1. Item 1
23
+ 2. Item 2
24
+ 3. Item 3
25
+
26
+ ### Unordered List
27
+ - Item A
28
+ - Item B
29
+ - Item C
30
+
31
+ ### Task List
32
+ - [x] Task 1
33
+ - [ ] Task 2
34
+ - [ ] Task 3
35
+
36
+ ## Links
37
+
38
+ Here's a [link to Google](https://www.google.com).
39
+
40
+ ## Images
41
+
42
+ ![Placeholder Image](https://via.placeholder.com/150)
43
+
44
+ ## Blockquotes
45
+
46
+ > This is a blockquote.
47
+
48
+ ## Code
49
+
50
+ Inline code can be written like `code`, and code blocks can be created:
51
+
52
+ ```python
53
+ def hello_world():
54
+ print("Hello, world!")
55
+ ```
56
+
57
+ ## Tables
58
+
59
+ | Header 1 | Header 2 |
60
+ |----------|----------|
61
+ | Cell 1 | Cell 2 |
62
+ | Cell 3 | Cell 4 |
63
+ | Cell 5 | Cell 6 |
64
+ | Cell 7 | Cell 8 |
65
+ | Cell 9 | Cell 10 |
66
+
67
+
68
+
69
+
70
+
71
+ | Header 1 | Header 2 | Header 3 | Header 4 |
72
+ |----------|----------|
73
+ | Cell 1 | Cell 2 | Cell 2 | Cell 2 |
74
+ | Cell 3 | Cell 4 | Cell 2 | Cell 2 |
75
+ | Cell 5 | Cell 6 | Cell 2 | Cell 2 |
76
+ | Cell 7 | Cell 8 | Cell 2 | Cell 2 |
77
+ | Cell 9 | Cell 10 | Cell 2 | Cell 2 |
78
+
79
+ ## Horizontal Rule
80
+
81
+ ---
82
+
83
+ ## Headers
84
+
85
+ ### Third-level Header
86
+
87
+ #### Fourth-level Header
88
+
89
+ ## Line Breaks
90
+
91
+ You can force a line break by ending a line with two or more spaces.
92
+ line break
93
+ no line break
94
+
95
+ line break with 2 new lines
96
+
97
+ here the code:
98
+
99
+ ```
100
+ You can force a line break by ending a line with two or more spaces.
101
+ line break
102
+ no line break
103
+
104
+ line break with 2 new lines
105
+ ```
106
+
107
+ ## Footnotes
108
+
109
+ Here's a footnote[^1].
110
+
111
+ [^1]: This is a sample footnote.
112
+
113
+ ## Escaping Markdown
114
+
115
+ If you want to display literal Markdown characters, you can use backslashes, like \*this\* won't be italic.
116
+
117
+ ## Special Characters
118
+
119
+ You can include special characters, such as &copy; and &trade;.
120
+
121
+ That's it for this Markdown test post!