Skip to content

Commit 72f691d

Browse files
committed
Unified file naming style.
1 parent ad77cde commit 72f691d

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

_includes/panel.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
{% if site.data.updates %}
1414

15-
{% include update_list.html %}
15+
{% include update-list.html %}
1616

1717
{% if update_list.size > 0 %}
1818

@@ -45,7 +45,7 @@ <h3 data-toc-skip>
4545

4646
{% endif %} <!-- site.data.updates -->
4747

48-
{% include trending_tags.html %}
48+
{% include trending-tags.html %}
4949

5050
{% if trending_tags.size > 0 %}
5151
<div id="access-tags">

_includes/search-results.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div class="col-12 col-xl-11 post-content">
1010
<div id="search-hints">
1111
<h4 class="text-muted mb-4">{{ site.data.label.panel.trending_tags }}</h4>
12-
{% include trending_tags.html %}
12+
{% include trending-tags.html %}
1313
{% for tag in trending_tags %}
1414
{% capture url %}/tags/{{ tag | downcase | url_encode }}/{% endcapture %}
1515
<a class="post-tag" href="{{ url | relative_url }}">{{ tag | replace: '-', ' ' }}</a>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% comment %}
2-
Get the last 5 post from lastmod list.
2+
Get the last 5 posts from lastmod list.
33
v2.2
44
https://github.com/cotes2020/jekyll-theme-chirpy
55
© 2020 Cotes Chung

assets/js/data/cache-list.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const include = [
5252
{% endif %}
5353
{% endfor %}
5454

55-
{% include update_list.html %}
55+
{% include update-list.html %}
5656
{% for item in update_list %}
5757
{% assign url = item | split: "::" | last | prepend: "/posts/" | append: "/" %}
5858
{% assign post_list = post_list | push: url %}
@@ -65,7 +65,7 @@ const include = [
6565
{% endfor %}
6666

6767
/* Trending tags */
68-
{% include trending_tags.html %}
68+
{% include trending-tags.html %}
6969
{% for tag in trending_tags %}
7070
{% capture tag_url %}/tags/{{ tag | downcase | url_encode }}/{% endcapture %}
7171
'{{ tag_url | relative_url }}',

0 commit comments

Comments
 (0)