word-games-theme 0.9.3 → 0.9.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/_data/blog/nav.json +1 -1
  3. data/_data/header/en/data.json +10 -2
  4. data/_data/wordgames/en/anagram_word_finder.json +2 -0
  5. data/_data/wordgames/en/feature_certain_positions.json +54 -0
  6. data/_data/wordgames/en/find-words-that-start-with-the-letters.json +54 -0
  7. data/_data/wordgames/en/root.json +10 -2
  8. data/_data/wordgames/en/word-meaning.json +86 -0
  9. data/_data/wordleSolver/en/data.json +6 -0
  10. data/_includes/Monumetric/Monumetric.html +48 -0
  11. data/_includes/autogenerated/content.html +1 -4
  12. data/_includes/cssfile/links.html +12 -0
  13. data/_includes/custom-head.html +0 -29
  14. data/_includes/find-words-in-certain-positions/words-in-certain-positions.html +168 -0
  15. data/_includes/head/index.html +3 -29
  16. data/_includes/header/blogHeader.html +1 -2
  17. data/_includes/header/index.html +1 -1
  18. data/_includes/script.html +16 -12
  19. data/_includes/section/commonPage.html +105 -101
  20. data/_includes/section/feature.html +1 -1
  21. data/_includes/section/news.html +8 -7
  22. data/_includes/section/related_categories_post.html +155 -150
  23. data/_includes/section/wordGroup.html +2 -12
  24. data/_includes/wordle-solver/wordle-solver.html +2 -3
  25. data/_layouts/allpages.html +1 -6
  26. data/_layouts/autogencontent.html +2 -5
  27. data/_layouts/blog.html +1 -2
  28. data/_layouts/default.html +18 -21
  29. data/_layouts/disclaimer.html +5 -2
  30. data/_layouts/page.html +7 -17
  31. data/_layouts/page2.html +3 -18
  32. data/_layouts/post.html +26 -23
  33. data/_layouts/privacyPolicy.html +2 -1
  34. data/_layouts/termAndCondition.html +1 -0
  35. data/_layouts/{wordleSolver.html → tools.html} +18 -11
  36. data/_layouts/wordMeaning.html +80 -66
  37. data/_layouts/xyzpages.html +1 -6
  38. data/assets/css/advancedFilter.css +8 -0
  39. data/assets/css/content.css +3 -3
  40. data/assets/css/home.css +58 -41
  41. data/assets/css/news.css +2 -2
  42. data/assets/css/style.css +26 -7
  43. data/assets/css/wordGroup.css +8 -4
  44. data/assets/css/wordleSolver.css +8 -14
  45. data/assets/css/wordsInCertainPosition.css +212 -0
  46. data/assets/images/wordswithletters-logo.png +0 -0
  47. data/assets/js/X-letter.js +12 -2
  48. data/assets/js/scrabbleDictonary.js +101 -0
  49. data/assets/js/wordScrabble.js +4 -1
  50. data/assets/js/wordleSolver.js +25 -18
  51. data/assets/js/words-in-certain-positions.js +302 -0
  52. data/assets/js/words-starting-with.js +564 -0
  53. metadata +12 -3
@@ -1,165 +1,170 @@
1
- {% assign file = page.fileName %}
2
- {% assign lang = page.lang %}
3
- {% assign dataToShow = site.data.[page.folderName][lang][file] %}
4
-
5
-
6
-
7
-
8
- <div class="container">
9
- <div class="relatedPosts">
10
-
11
- <h2 class="pt-5 pb-0 related_post_heading">You might also like</h2>
12
-
13
- {% assign maxRelated = 6 %}
14
- {% assign minCommonTags = 1 %}
15
- {% assign maxRelatedCounter = 0 %}
16
-
17
- <div class="row">
18
-
19
- {% for post in site.posts %}
20
- {% assign sameTagCount = 0 %}
21
- {% assign commonTags = '' %}
22
-
23
-
24
-
25
- {%- if page.categories or dataToShow.categories-%}
26
- {% for category in post.categories %}
27
- {% if post.url != page.url %}
28
- {% if page.categories or dataToShow.categories contains category %}
29
- {% assign sameTagCount = sameTagCount | plus: 1 %}
30
- {% endif %}
31
- {% endif %}
32
- {% endfor %}
33
- {%- endif -%}
34
-
35
- {%- if page.tags -%}
36
- {% for tag in post.tags %}
37
- {% if post.url != page.url %}
38
- {% if page.tags contains tag %}
39
- {% assign sameTagCount = sameTagCount | plus: 1 %}
40
- {% endif %}
1
+ <section class="related-posts-section">
2
+ <div class="container">
3
+ <div class="relatedPosts">
4
+ <h2 class="pt-5 pb-0 related_post_heading">You might also like</h2>
5
+ {% assign maxRelated = 6 %}
6
+ {% assign minCommonTags = 1 %}
7
+ {% assign maxRelatedCounter = 0 %}
8
+ {% assign file = page.fileName %}
9
+ {% assign lang = "en" %}
10
+ {% assign folder = page.folderName %}
11
+ {%- if site.data[folder][lang][file].categories -%}
12
+ {% assign categories= site.data[folder][lang][file].categories %}
13
+ {%- else -%}
14
+ {% assign categories= page.categories %}
41
15
  {%- endif -%}
42
- {% endfor %}
16
+ {%- if site.data[folder][lang][file].tags -%}
17
+ {% assign tags= site.data[folder][lang][file].tags %}
18
+ {%- else -%}
19
+ {% assign tags= page.tags %}
43
20
  {%- endif -%}
44
21
 
45
-
46
- {% if sameTagCount >= minCommonTags %}
47
- {%- include authors/authors.html-%}
48
- <div class="col-lg-4 col-md-6 mb-4 card-group">
49
- <div class="card h-100">
50
- <a href="{{ post.url }}">
51
- <img src="{{ post.image }}" loading="lazy" class="card-img-top" height="auto" width="100%"
52
- alt="">
53
- </a>
54
- <div class="card-body">
55
- <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
56
- <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
22
+ <div class="row">
23
+ {% for post in site.posts %}
24
+ {% assign sameTagCount = 0 %}
25
+ {% assign commonTags = '' %}
26
+
27
+ {%- if categories -%}
28
+ {% for category in post.categories %}
29
+ {% if post.url != page.url %}
30
+ {% if categories contains category %}
31
+ {% assign sameTagCount = sameTagCount | plus: 1 %}
32
+ {% endif %}
33
+ {% endif %}
34
+ {% endfor %}
35
+ {%- endif -%}
36
+
37
+ {%- if tags -%}
38
+ {% for tag in post.tags %}
39
+ {% if post.url != page.url %}
40
+ {% if tags contains tag %}
41
+ {% assign sameTagCount = sameTagCount | plus: 1 %}
42
+ {% endif %}
43
+ {%- endif -%}
44
+ {% endfor %}
45
+ {%- endif -%}
46
+
47
+
48
+ {% if sameTagCount >= minCommonTags %}
49
+ {%- include authors/authors.html-%}
50
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
51
+ <div class="card h-100">
52
+ <a href="{{ post.url }}">
53
+ <img src="{{ post.image }}" loading="lazy" class="card-img-top" height="auto" width="100%"
54
+ alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
57
55
  </a>
58
- </div>
59
- <div class="card-footer bg-white">
60
- <div class="wrapfooter">
61
- {% if post.author %}
62
- <span class="meta-footer-thumb">
63
- <img class="author-thumb" loading="lazy" src="{{ image }}" alt="{{ authorName }}">
64
- </span>
65
- {% endif %}
66
-
67
- <span class="author-meta">
68
- <span class="post-name">
69
- <a target="_blank" href="/blog">{{authorName}}</a>
70
- </span><br>
71
- <span class="post-date">{{post.date | date_to_string }}</span>
72
- </span>
73
- <span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
74
- title="Read Story">Read
75
- More</a></span>
56
+ <div class="card-body">
57
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
58
+ <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
59
+ </a>
60
+ </div>
61
+ <div class="card-footer bg-white">
62
+ <div class="wrapfooter">
63
+ {% if post.author %}
64
+ <span class="meta-footer-thumb">
65
+ <img class="author-thumb" loading="lazy" src="{{ image }}" alt="{{ authorName }}"
66
+ {%- if site.crossorigin -%} crossorigin {%- endif -%}>
67
+ </span>
68
+ {% endif %}
69
+
70
+ <span class="author-meta">
71
+ <span class="post-name">
72
+ <a target="_blank" href="/blog">{{authorName}}</a>
73
+ </span><br>
74
+ <span class="post-date">{{post.date | date_to_string }}</span>
75
+ </span>
76
+ <span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
77
+ title="Read Story">Read
78
+ More</a></span>
79
+ </div>
76
80
  </div>
77
81
  </div>
78
82
  </div>
79
- </div>
80
- {% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
81
- {% if maxRelatedCounter >= maxRelated %}
82
- {% break %}
83
- {% endif %}
84
- {%- else -%}
85
- {%- endif -%}
86
- {% endfor %}
87
- {%- assign remamingPosts = maxRelated | minus: maxRelatedCounter -%}
88
-
89
-
90
-
91
-
92
- {%- if remamingPosts > 0 -%}
93
- {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
94
- {% for post in posts %}
95
- {%- if remamingPosts > 0 -%}
96
- {%- assign tagData = true -%}
97
- {%- assign catData = true -%}
98
- {%- if page.tags -%}
99
- {% for tag in post.tags %}
100
- {% if post.url != page.url %}
101
- {% if page.tags contains tag %}
102
- {%- assign tagData = false -%}
103
- {%- break -%}
104
- {% endif %}
105
- {%- endif -%}
106
- {% endfor %}
107
- {%- endif -%}
108
- {%- if page.categories or dataToShow.categories-%}
109
- {%- if tagData == false -%}
110
- {%- continue -%}
111
- {%- else -%}
112
- {% for category in post.categories %}
113
- {% if post.url != page.url %}
114
- {% if page.categories or dataToShow.categories contains category %}
115
- {%- assign catData = false -%}
116
- {%- break -%}
117
- {% endif %}
118
- {% endif %}
119
- {% endfor %}
120
- {%- endif -%}
121
- {%- if catData == false -%}
122
- {%- continue -%}
123
- {%- endif -%}
124
- {%- assign remamingPosts = remamingPosts | minus: 1 -%}
125
- {%- include authors/authors.html-%}
126
- <div class="col-lg-4 col-md-6 mb-4 card-group">
127
- <div class="card h-100">
128
- <a href="{{ post.url }}">
129
- <img src="{{ post.image }}" class="card-img-top" height="215px" width="100%" loading="lazy"
130
- alt="">
131
- </a>
132
- <div class="card-body">
133
- <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
134
- <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
83
+ {% assign maxRelatedCounter = maxRelatedCounter | plus: 1 %}
84
+ {% if maxRelatedCounter >= maxRelated %}
85
+ {% break %}
86
+ {% endif %}
87
+ {%- else -%}
88
+ {%- endif -%}
89
+ {% endfor %}
90
+ {%- assign remamingPosts = maxRelated | minus: maxRelatedCounter -%}
91
+
92
+
93
+
94
+
95
+ {%- if remamingPosts > 0 -%}
96
+ {% assign posts = site.posts | where_exp:"post","post.url != page.url" %}
97
+ {% for post in posts %}
98
+ {%- if remamingPosts > 0 -%}
99
+ {%- assign tagData = true -%}
100
+ {%- assign catData = true -%}
101
+ {%- if tags -%}
102
+ {% for tag in post.tags %}
103
+ {% if post.url != page.url %}
104
+ {% if tags contains tag %}
105
+ {%- assign tagData = false -%}
106
+ {%- break -%}
107
+ {% endif %}
108
+ {%- endif -%}
109
+ {% endfor %}
110
+ {%- endif -%}
111
+ {%- if categories -%}
112
+ {%- if tagData == false -%}
113
+ {%- continue -%}
114
+ {%- else -%}
115
+ {% for category in post.categories %}
116
+ {% if post.url != page.url %}
117
+ {% if categories contains category %}
118
+ {%- assign catData = false -%}
119
+ {%- break -%}
120
+ {% endif %}
121
+ {% endif %}
122
+ {% endfor %}
123
+ {%- endif -%}
124
+ {%- if catData == false -%}
125
+ {%- continue -%}
126
+ {%- endif -%}
127
+ {%- assign remamingPosts = remamingPosts | minus: 1 -%}
128
+ {%- include authors/authors.html-%}
129
+ <div class="col-lg-4 col-md-6 mb-4 card-group">
130
+ <div class="card h-100">
131
+ <a href="{{ post.url }}">
132
+ <img src="{{ post.image }}" class="card-img-top" height="215px" width="100%" loading="lazy"
133
+ alt="{{post.title}}" {%- if site.crossorigin -%} crossorigin {%- endif -%}>
135
134
  </a>
136
- </div>
137
- <div class="card-footer bg-white">
138
- <div class="wrapfooter">
139
- {% if post.author %}
140
- <span class="meta-footer-thumb">
141
- <img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}">
142
- </span>
143
- {% endif %}
144
- <span class="author-meta">
145
- <span class="post-name">
146
- <a target="_blank" href="/blog">{{authorName}}</a>
147
- </span><br>
148
- <span class="post-date">{{post.date | date_to_string }}</span>
149
- </span>
150
- <span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
151
- title="Read Story">Read
152
- More</a></span>
135
+ <div class="card-body">
136
+ <a class="text-decoration-none text-dark" href="{{ post.url }}" class="anchor_link">
137
+ <h4 class="card-title mb-4 text-left">{{ post.title }}</h4>
138
+ </a>
139
+ </div>
140
+ <div class="card-footer bg-white">
141
+ <div class="wrapfooter">
142
+ {% if post.author %}
143
+ <span class="meta-footer-thumb">
144
+ <img class="author-thumb" loading="lazy" src="{{image}}" alt="{{ authorName }}" {%-
145
+ if site.crossorigin -%} crossorigin {%- endif -%}>
146
+ </span>
147
+ {% endif %}
148
+ <span class="author-meta">
149
+ <span class="post-name">
150
+ <a target="_blank" href="/blog">{{authorName}}</a>
151
+ </span><br>
152
+ <span class="post-date">{{post.date | date_to_string }}</span>
153
+ </span>
154
+ <span class="post-read-more"><a class="text-dark" href="{{ post.url }}"
155
+ title="Read Story">Read
156
+ More</a></span>
157
+ </div>
153
158
  </div>
154
159
  </div>
155
160
  </div>
156
- </div>
157
- {%- endif -%}
158
- {%- endif -%}
161
+ {%- endif -%}
162
+ {%- endif -%}
159
163
 
160
- {% endfor %}
161
- {%- endif -%}
164
+ {% endfor %}
165
+ {%- endif -%}
162
166
 
167
+ </div>
163
168
  </div>
164
169
  </div>
165
- </div>
170
+ </section>
@@ -1,17 +1,7 @@
1
- {%- if page.layout == "page2" -%}
2
- <div class="row pagePad" style="padding:170px .2rem 5rem .2rem">
1
+ <div class="row pad">
3
2
  <div class="col-md-12">
4
3
  <div class="wordCount"></div>
5
4
  <div class="main"></div>
6
5
  <div class="errorMsg"></div>
7
6
  </div>
8
- </div>
9
- {%- else -%}
10
- <div class="row pad" style="padding:210px .2rem 5rem .2rem">
11
- <div class="col-md-12">
12
- <div class="wordCount"></div>
13
- <div class="main"></div>
14
- <div class="errorMsg"></div>
15
- </div>
16
- </div>
17
- {%- endif -%}
7
+ </div>
@@ -106,8 +106,6 @@
106
106
  </div>
107
107
  </div>
108
108
  </div>
109
-
110
-
111
109
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"
112
110
  integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
113
111
  <script>
@@ -129,4 +127,5 @@
129
127
  document.getElementById(last).focus()
130
128
  }
131
129
  }
132
- </script>
130
+ </script>
131
+ <script defer src="../assets/js/wordleSolver.js"></script>
@@ -8,13 +8,8 @@
8
8
 
9
9
  {{content}}
10
10
 
11
-
12
11
  {%- include footer/index.html -%}
13
- <link rel="stylesheet"
14
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
15
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
16
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
17
- {% include Monumetric/Monumetric.html %}
12
+ {%- include script.html -%}
18
13
  </body>
19
14
 
20
15
  </html>
@@ -8,11 +8,8 @@
8
8
 
9
9
  {% include autogenerated/footer.html %}
10
10
 
11
- <link rel="stylesheet"
12
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
13
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
14
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
15
- {% include Monumetric/Monumetric.html %}
11
+ {%- include script.html -%}
12
+
16
13
  </body>
17
14
 
18
15
  </html>
data/_layouts/blog.html CHANGED
@@ -60,12 +60,11 @@
60
60
 
61
61
  {% include section/count.html %}
62
62
  </section>
63
- {%- include section/alertbar.html -%}
63
+ <!-- {%- include section/alertbar.html -%} -->
64
64
 
65
65
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" />
66
66
  {% include script.html %}
67
67
  <script src="{{ '/assets/js/TopScroll.js' | relative_url }}"></script>
68
- {% include Monumetric/Monumetric.html %}
69
68
  </body>
70
69
 
71
70
  </html>
@@ -33,28 +33,26 @@
33
33
  {%- include share/socialshare.html -%}
34
34
  {%- include Rating/rating.html -%}
35
35
 
36
- {%- if site.posts.size>0 -%}
37
- {% include section/blog.html %}
36
+ {%- assign langen = "en" -%}
37
+ {%- if site.data[folder][langen][file].categories -%}
38
+ {% assign categories= site.data[folder][langen][file].categories %}
39
+ {%- else -%}
40
+ {% assign categories= page.categories %}
38
41
  {%- endif -%}
39
-
42
+ {%- if site.data[folder][langen][file].tags -%}
43
+ {% assign tags= site.data[folder][langen][file].tags %}
44
+ {%- else -%}
45
+ {% assign tags= page.tags %}
46
+ {%- endif -%}
47
+ {%- if categories.size> 0 or tags.size>0-%}
48
+ {%- include section/related_categories_post.html -%}
49
+ {%- else -%}
50
+ {%- include section/recent_posts.html -%}
51
+ {% endif %}
40
52
 
41
53
  {%- include footer/index.html -%}
42
54
 
43
- <link rel="stylesheet"
44
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
45
- <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
46
- <script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
47
- <script>
48
- (function () {
49
- d = document;
50
- c = d.createElement('link');
51
- c.href = '//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css';
52
- c.rel = 'stylesheet';
53
- d.head.appendChild(c);
54
- })();
55
- </script>
56
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
57
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
55
+ {%- include script.html -%}
58
56
  <script>
59
57
  let txtBox = document.querySelector('.txtBox')
60
58
  let focusBorder = document.querySelector('.focus-border')
@@ -69,14 +67,13 @@
69
67
  e.target.value = e.target.value.replace(/ /g, '?')
70
68
  let data = []
71
69
  data = e.target.value.split('').filter((i) => i === '?')
72
- console.log(data.length)
73
- console.log(rangeOfBlankTile)
70
+ // console.log(data.length)
71
+ // console.log(rangeOfBlankTile)
74
72
  if (data.length > rangeOfBlankTile) {
75
73
  e.target.value = e.target.value.replace(/\?$/, '')
76
74
  }
77
75
  })
78
76
  </script>
79
- {% include Monumetric/Monumetric.html %}
80
77
  </body>
81
78
 
82
79
  </html>
@@ -5,8 +5,9 @@
5
5
  <!DOCTYPE html>
6
6
  <html lang="{{disclaimerData.htmlLangAtt}}">
7
7
  {%- include head/index.html -%}
8
+
8
9
  <body>
9
- {%- include header/index.html -%}
10
+ {%- include header/index.html -%}
10
11
 
11
12
  <!-- Start page-top section -->
12
13
  <section class="page-top-section">
@@ -110,7 +111,9 @@
110
111
  </div>
111
112
  </section>
112
113
  <!-- End main body content -->
113
- {%- include footer/index.html -%}
114
+ {%- include footer/index.html -%}
115
+
116
+ {%- include script.html -%}
114
117
  </body>
115
118
 
116
119
  </html>
data/_layouts/page.html CHANGED
@@ -55,23 +55,13 @@
55
55
 
56
56
  {%- include footer/index.html -%}
57
57
 
58
- <link rel="stylesheet"
59
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
60
- <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
61
- <script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
62
- <script>
63
- (function () {
64
- d = document;
65
- c = d.createElement('link');
66
- c.href = '//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css';
67
- c.rel = 'stylesheet';
68
- d.head.appendChild(c);
69
- })();
70
- </script>
71
- <script data-range="{{page.blanktilerange}}" src="/assets/js/wordScrabble.js"></script>
72
- <script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
73
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
74
- {% include Monumetric/Monumetric.html %}
58
+ {%- include script.html -%}
59
+
60
+
61
+
62
+ {%- if page.tool != 'words-that-start-with-the-letters' -%}
63
+ <script data-url="{{site.url}}" data-range="{{page.blanktilerange}}" src="/assets/js/wordScrabble.js"></script>
64
+ {%- endif -%}
75
65
  </body>
76
66
 
77
67
  </html>
data/_layouts/page2.html CHANGED
@@ -51,24 +51,9 @@
51
51
 
52
52
  {%- include footer/index.html -%}
53
53
 
54
-
55
- <link rel="stylesheet"
56
- href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.5.0/font/bootstrap-icons.min.css" />
57
- <script src="//cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
58
- <script>WebFont.load({ google: { families: ['Poppins:400&display=swap'] } })</script>
59
- <script>
60
- (function () {
61
- d = document;
62
- c = d.createElement('link');
63
- c.href = '//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css';
64
- c.rel = 'stylesheet';
65
- d.head.appendChild(c);
66
- })();
67
- </script>
68
- <script src="/assets/js/X-letter.js" data-letter="{{page.letter}}" data-ablank="{{page.ablank}}"></script>
69
- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
70
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"></script>
71
- {% include Monumetric/Monumetric.html %}
54
+ {%- include script.html -%}
55
+ <script src="/assets/js/X-letter.js" data-url="{{site.url}}" data-letter="{{page.letter}}"
56
+ data-ablank="{{page.ablank}}"></script>
72
57
  </body>
73
58
 
74
59
  </html>