jekyll-theme-fica 0.2.2 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yaml +5 -9
  3. data/404.html +12 -10
  4. data/LICENSE.txt +1 -1
  5. data/License.md +2 -8
  6. data/README.md +56 -53
  7. data/_includes/Footer.html +85 -109
  8. data/_includes/Head.html +15 -2
  9. data/_includes/Header.html +14 -10
  10. data/_includes/assets/BTT.html +1 -1
  11. data/_includes/assets/comments.html +1 -1
  12. data/_layouts/home.html +2 -2
  13. data/_layouts/post.html +5 -7
  14. data/_layouts/post_list.html +103 -0
  15. data/_posts/2022-03-31-To-Know-if-the-nav-works.md +9 -8
  16. data/_posts/{2022-04-1-Demo.md → 2022-04-1-Elements-of-Fica-Theme.md} +111 -113
  17. data/_posts/2022-04-5-Getting-Started.md +8 -9
  18. data/_posts/2022-04-6-Creating-a-new-post.md +144 -136
  19. data/_posts/2023-04-24-Fica-Customization.md +43 -0
  20. data/_sass/base.scss +79 -114
  21. data/_sass/jekyll-theme-fica.scss +1 -1
  22. data/_sass/layouts/Google-fonts.scss +103 -138
  23. data/_sass/layouts/component.scss +49 -30
  24. data/_sass/layouts/layout.scss +206 -161
  25. data/_sass/layouts/typography.scss +492 -0
  26. data/_sass/layouts/variable.scss +22 -8
  27. data/assets/css/Style.scss +1 -9
  28. data/assets/favicons/android-chrome-192x192.png +0 -0
  29. data/assets/favicons/android-chrome-512x512.png +0 -0
  30. data/assets/favicons/apple-touch-icon.png +0 -0
  31. data/assets/favicons/browserconfig.xml +9 -0
  32. data/assets/favicons/favicon-16x16.png +0 -0
  33. data/assets/favicons/favicon-32x32.png +0 -0
  34. data/assets/favicons/favicon.ico +0 -0
  35. data/assets/favicons/mstile-150x150.png +0 -0
  36. data/assets/favicons/safari-pinned-tab.svg +32 -0
  37. data/assets/favicons/site.webmanifest +19 -0
  38. data/assets/img/homepage-pic.png +0 -0
  39. data/js/Main.js +55 -2
  40. data/logo.png +0 -0
  41. data/post/index.html +3 -3
  42. metadata +24 -33
  43. data/.github/workflows/.ci_BASE_2002.yaml.swp +0 -0
  44. data/.github/workflows/.ci_LOCAL_2002.yaml.swp +0 -0
  45. data/.github/workflows/.ci_REMOTE_2002.yaml.swp +0 -0
  46. data/.github/workflows/ci_BACKUP_2002.yaml +0 -34
  47. data/.github/workflows/ci_BASE_2002.yaml +0 -27
  48. data/.github/workflows/ci_LOCAL_2002.yaml +0 -27
  49. data/.github/workflows/ci_REMOTE_2002.yaml +0 -27
  50. data/_layouts/post_home.html +0 -113
@@ -0,0 +1,103 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <h1 class="site-post-list-title">{{ page.site-title }}</h1>
5
+
6
+ {%- if site.paginate -%}
7
+ {% assign pinned = site.posts | where: "pin", "true" %}
8
+ {% assign default = site.posts | where_exp: "item", "item.pin != true" %}
9
+
10
+ {% assign posts = "" | split: "" %}
11
+
12
+ <!-- Get pinned posts -->
13
+
14
+ {% assign offset = paginator.page | minus: 1 | times: paginator.per_page %}
15
+ {% assign pinned_num = pinned.size | minus: offset %}
16
+
17
+ {% if pinned_num > 0 %}
18
+ {% for i in (offset..pinned.size) limit: pinned_num %}
19
+ {% assign posts = posts | push: pinned[i] %}
20
+ {% endfor %}
21
+ {% else %}
22
+ {% assign pinned_num = 0 %}
23
+ {% endif %}
24
+
25
+
26
+ <!-- Get default posts -->
27
+
28
+ {% assign default_beg = offset | minus: pinned.size %}
29
+
30
+ {% if default_beg < 0 %} {% assign default_beg=0 %} {% endif %} {% assign default_num=paginator.posts | size | minus:
31
+ pinned_num %} {% assign default_end=default_beg | plus: default_num | minus: 1 %} {% if default_num> 0 %}
32
+ {% for i in (default_beg..default_end) %}
33
+ {% assign posts = posts | push: default[i] %}
34
+ {% endfor %}
35
+ {% endif %}
36
+ {% else %}
37
+ {% assign posts = site.posts %}
38
+ {% endif %}
39
+
40
+
41
+ {%- if posts.size > 0 -%}
42
+ <div class="post-list">
43
+ {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
44
+ {%- for post in posts -%}
45
+ <div class="post-container">
46
+ <a class="post" href="{{ post.url | relative_url }}">
47
+ <p class="post-header">
48
+ {{ post.title | escape }}
49
+ </p>
50
+ <div class="post-info">
51
+ {%- assign date_format_tooltip = site.fica.date_format | default: "%b%-d, %Y" -%}
52
+ <span class="post-info-date">{{ post.date | date: date_format }}</span>
53
+ {% if post.pin %}
54
+ <span class="post-info-pin">
55
+ <span class="material-icons-round">
56
+ push_pin
57
+ </span>
58
+ <p>pinned</p>
59
+ </span>
60
+ {%- endif -%}
61
+ </div>
62
+ <div class="post-descriptions">
63
+ {%- if site.show_descriptions -%}
64
+ {{ post.excerpt }}
65
+ {%- endif -%}
66
+ </div>
67
+
68
+ </a>
69
+
70
+ </div>
71
+ {%- endfor -%}
72
+ </div>
73
+
74
+ {%- if site.paginate -%}
75
+ <ul class="post-nav">
76
+ <li>
77
+ {% if paginator.previous_page %}
78
+ <a href="{{ paginator.previous_page_path | relative_url }}" class="material-icons-round post-nav-svg">
79
+ arrow_back_ios
80
+ </a>
81
+ {% else %}
82
+ <a class="material-icons-round post-nav-svg disable-svg">
83
+ chevron_left
84
+ </a>
85
+ {% endif %}
86
+ </li>
87
+ <li class="post-nav-num">{{ paginator.page }}
88
+ /
89
+ {{ paginator.total_pages }}</li>
90
+ <li>
91
+ {%- if paginator.next_page %}
92
+ <a href="{{ paginator.next_page_path | relative_url }}" class="material-icons-round post-nav-svg">
93
+ arrow_forward_ios
94
+ </a>
95
+ {%- else %}
96
+ <a class="material-icons-round post-nav-svg disable-svg">
97
+ chevron_right
98
+ </a>
99
+ {%- endif %}
100
+ </li>
101
+ </ul>
102
+ {%- endif %}
103
+ {%- endif -%}
@@ -1,8 +1,9 @@
1
- ---
2
- layout: post
3
- site-title: To Know if the nav works
4
- author: Involts
5
- modified_date: 2022-04-3
6
- ---
7
-
8
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?
1
+ ---
2
+ layout: post
3
+ site-title: To Know if the nav works
4
+ author: Aziel Lance
5
+ modified_date: 2022-04-3
6
+ post_toc: false
7
+ ---
8
+
9
+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam maxime dolor incidunt eligendi eum magni velit, quam cum eos, quo reprehenderit blanditiis unde! Esse excepturi porro, inventore nulla quo eaque?
@@ -1,114 +1,112 @@
1
- ---
2
- layout: post
3
- site-title: Demo
4
- author: Involts
5
- modified_date: 2022-04-3
6
- ---
7
-
8
- # Overview of the elements of Fica Theme
9
-
10
- ## Paragraph
11
-
12
- Lorem ipsum dolor sit amet, consectetur adipiscing elit.
13
-
14
-
15
- Nullam placerat massa ex, at gravida neque pharetra ac. Morbi scelerisque id lorem elementum vulputate.
16
-
17
- Sed eu lectus a erat placerat consequat id ut elit. Suspendisse potenti. Sed eu orci est.
18
-
19
- Phasellus id sodales leo. Quisque sit amet urna ex.
20
-
21
- In hac habitasse platea dictumst. Maecenas tincidunt mauris a rutrum pharetra.Etiam sed est risus.
22
-
23
- Integer scelerisque lacus id neque tempor tincidunt.
24
-
25
- Vivamus ac suscipit eros, in sollicitudin velit.
26
-
27
- Nam at odio quam. Curabitur magna libero, suscipit sed venenatis vel, interdum vitae neque.
28
-
29
-
30
- # headings
31
- ---
32
- # Lorem ipsum
33
- ## Lorem ipsum
34
- ### Lorem ipsum
35
- #### Lorem ipsum
36
- ##### Lorem ipsum
37
- ###### Lorem ipsum
38
- ---
39
- # Prompts
40
- ---
41
-
42
- > An example showing the `Tip` Prompt
43
- {: .prompt-tip }
44
-
45
-
46
- > An example showing the `Info` Prompt
47
- {: .prompt-info }
48
-
49
- > An example showing the `Warning` Prompt
50
- {: .prompt-warning }
51
-
52
- > An example showing the `Danger` Prompt
53
- {: .prompt-danger }
54
-
55
- ---
56
-
57
- # Table
58
-
59
- | Title 1 | Title 2 | Title 3 | Title 4 |
60
- | --------------------- | --------------------- | --------------------- | --------------------- |
61
- | lorem | lorem ipsum | lorem ipsum dolor | lorem ipsum dolor sit |
62
- | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit |
63
- | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit |
64
- | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit |
65
-
66
-
67
- # Code Block
68
-
69
- ```js
70
- // Javascript code with syntax highlighting.
71
- var fun = function lang(l) {
72
- dateformat.i18n = require("./lang/" + l);
73
- return true;
74
- };
75
- ```
76
-
77
- ```html
78
- # Html code with syntax highlighting
79
- <head>
80
- <meta charset="utf-8" />
81
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
82
- <meta name="viewport" content="width=device-width, initial-scale=1" />
83
- <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
84
- <title>{{page.site-title}}</title>
85
- </head>
86
- ```
87
-
88
- # Unordered list
89
-
90
- - This is an unordered list following a header.
91
- - This is an unordered list following a header.
92
- - This is an unordered list following a header.
93
-
94
- # Ordered list
95
-
96
- 1. This is an ordered list following a header.
97
- 2. This is an ordered list following a header.
98
- 3. This is an ordered list following a header.
99
-
100
- # And a nested list:
101
-
102
- - level 1 item
103
- - level 2 item
104
- - level 2 item
105
- - level 3 item
106
- - level 3 item
107
- - level 1 item
108
- - level 2 item
109
- - level 2 item
110
- - level 2 item
111
- - level 1 item
112
- - level 2 item
113
- - level 2 item
1
+ ---
2
+ layout: post
3
+ site-title: Elements of Fica Theme
4
+ author: Aziel Lance
5
+ modified_date: 2023-04-14
6
+ ---
7
+
8
+ # Paragraph
9
+
10
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit.
11
+
12
+
13
+ Nullam placerat massa ex, at gravida neque pharetra ac. Morbi scelerisque id lorem elementum vulputate.
14
+
15
+ Sed eu lectus a erat placerat consequat id ut elit. Suspendisse potenti. Sed eu orci est.
16
+
17
+ Phasellus id sodales leo. Quisque sit amet urna ex.
18
+
19
+ In hac habitasse platea dictumst. Maecenas tincidunt mauris a rutrum pharetra.Etiam sed est risus.
20
+
21
+ Integer scelerisque lacus id neque tempor tincidunt.
22
+
23
+ Vivamus ac suscipit eros, in sollicitudin velit.
24
+
25
+ Nam at odio quam. Curabitur magna libero, suscipit sed venenatis vel, interdum vitae neque.
26
+
27
+
28
+ # headings
29
+ ---
30
+ # Lorem ipsum
31
+ ## Lorem ipsum
32
+ ### Lorem ipsum
33
+ #### Lorem ipsum
34
+ ##### Lorem ipsum
35
+ ###### Lorem ipsum
36
+ ---
37
+ # Prompts
38
+ ---
39
+
40
+ > An example showing the `Tip` Prompt
41
+ {: .prompt-tip }
42
+
43
+
44
+ > An example showing the `Info` Prompt
45
+ {: .prompt-info }
46
+
47
+ > An example showing the `Warning` Prompt
48
+ {: .prompt-warning }
49
+
50
+ > An example showing the `Danger` Prompt
51
+ {: .prompt-danger }
52
+
53
+ ---
54
+
55
+ # Table
56
+
57
+ | Title 1 | Title 2 | Title 3 | Title 4 |
58
+ | --------------------- | --------------------- | --------------------- | --------------------- |
59
+ | lorem | lorem ipsum | lorem ipsum dolor | lorem ipsum dolor sit |
60
+ | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit |
61
+ | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit |
62
+ | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit |
63
+
64
+
65
+ # Code Block
66
+
67
+ ```js
68
+ // Javascript code with syntax highlighting.
69
+ var fun = function lang(l) {
70
+ dateformat.i18n = require("./lang/" + l);
71
+ return true;
72
+ };
73
+ ```
74
+
75
+ ```html
76
+ # Html code with syntax highlighting
77
+ <head>
78
+ <meta charset="utf-8" />
79
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
80
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
81
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
82
+ <title>{{page.site-title}}</title>
83
+ </head>
84
+ ```
85
+
86
+ # Unordered list
87
+
88
+ - This is an unordered list following a header.
89
+ - This is an unordered list following a header.
90
+ - This is an unordered list following a header.
91
+
92
+ # Ordered list
93
+
94
+ 1. This is an ordered list following a header.
95
+ 2. This is an ordered list following a header.
96
+ 3. This is an ordered list following a header.
97
+
98
+ # And a nested list:
99
+
100
+ - level 1 item
101
+ - level 2 item
102
+ - level 2 item
103
+ - level 3 item
104
+ - level 3 item
105
+ - level 1 item
106
+ - level 2 item
107
+ - level 2 item
108
+ - level 2 item
109
+ - level 1 item
110
+ - level 2 item
111
+ - level 2 item
114
112
  - level 1 item
@@ -1,9 +1,8 @@
1
1
  ---
2
2
  layout: post
3
3
  site-title: Getting Started
4
- author: Involts
4
+ author: Aziel Lance
5
5
  pin: true
6
- post_toc: true
7
6
  ---
8
7
 
9
8
  # Prerequisites
@@ -16,7 +15,7 @@ Follow the instructions in [jekyll Docs](https://jekyllrb.com/docs/installation/
16
15
 
17
16
  1. [Using RubyGems](https://rubygems.org/gems/jekyll-theme-fica) - Easy to upgrade, but it is not convenient with customizing the Theme.
18
17
 
19
- 1. [Forking using Github](https://github.com/Involts/jekyll-theme-fica/generate) - Not easy to upgrade, but you needs familiar with [Jekyll](https://jekyllrb.com), [Git](https://git-scm.com/) or [Github](https://github.com/).
18
+ 1. [Forking using Github](https://github.com/aeziyehl/jekyll-theme-fica/generate) - Not easy to upgrade, but you needs familiar with [Jekyll](https://jekyllrb.com), [Git](https://git-scm.com/) or [Github](https://github.com/).
20
19
 
21
20
  ## Option 1. Using RubyGems
22
21
 
@@ -80,10 +79,10 @@ title: [The title of your site]
80
79
  description: [A short description of your site's purpose]
81
80
 
82
81
  socials:
83
- # Change Involts to your full name.
82
+ # Change aeziyehl to your full name.
84
83
  name: [The auther of the site]
85
84
  # it also be the copyright owner's link
86
- auther-link: [Link of the auther]
85
+ author-link: [Link of the auther]
87
86
  ```
88
87
 
89
88
  Change the links of your site header:
@@ -92,7 +91,7 @@ Change the links of your site header:
92
91
  header:
93
92
  external_link_1: true # if false, it adds the baseurl of the site
94
93
  header_name_1: Download
95
- header_link_1: https://github.com/Involts/jekyll-theme-fica/zipball/master
94
+ header_link_1: https://github.com/aeziyehl/jekyll-theme-fica/zipball/master
96
95
 
97
96
  external_link_2: false # if false, it adds the baseurl of the site
98
97
  header_name_2: Post
@@ -114,7 +113,7 @@ Change the links of your site header:
114
113
  header:
115
114
  external_link_1: true # if false, it adds the baseurl of the site
116
115
  header_name_1: Download
117
- header_link_1: https://github.com/Involts/jekyll-theme-fica/zipball/master
116
+ header_link_1: https://github.com/aeziyehl/jekyll-theme-fica/zipball/master
118
117
  - external_link_2: false # if false, it adds the baseurl of the site
119
118
  + external_link_2: true # if false, it adds the baseurl of the site
120
119
  header_name_2: Post
@@ -137,9 +136,9 @@ $ bin/run upgrade
137
136
  ```
138
137
  {: .nolineno}
139
138
 
140
- Please refer to the [Upgrade Guide](https://github.com/Involts/jekyll-theme-fica/wiki/Theme-Upgrade-Guide) to keep your repo’s files in sync with the latest version of the theme.
139
+ Please refer to the [Upgrade Guide](https://github.com/aeziyehl/jekyll-theme-fica/wiki/Theme-Upgrade-Guide) to keep your repo’s files in sync with the latest version of the theme.
141
140
 
142
- - If you [forked](https://github.com/Involts/jekyll-theme-fica/fork) it on [GitHub](https://github.com/Involts/jekyll-theme-fica), then merge the [latest tags](https://github.com/Involts/jekyll-theme-fica/tags) into your Jekyll site to complete the upgrade. The merge is likely to conflict with your local modifications. Please be patient and careful to resolve these conflicts.
141
+ - If you [forked](https://github.com/aeziyehl/jekyll-theme-fica/fork) it on [GitHub](https://github.com/aeziyehl/jekyll-theme-fica), then merge the [latest tags](https://github.com/aeziyehl/jekyll-theme-fica/tags) into your Jekyll site to complete the upgrade. The merge is likely to conflict with your local modifications. Please be patient and careful to resolve these conflicts.
143
142
 
144
143
 
145
144