Skip to content

Commit f0d0c01

Browse files
committed
refactor: Rename icon.html to logo.html
1 parent f9fc762 commit f0d0c01

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

_includes/flex-sections.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<a href="{{ item.url | relative_url }}">
2121
<div>
2222
{% if item.icon %}
23-
{% include icon.html name=item.icon %}
23+
{% include logo.html name=item.icon %}
2424
{% endif %}
2525
<span>{{ item.title }}</span>
2626
</div>
File renamed without changes.

_layouts/listing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<header class="post-header">
88
<h1 class="post-title">
99
{% if page.icon %}
10-
{% include icon.html name=page.icon _size='medium' %}
10+
{% include logo.html name=page.icon _size='medium' %}
1111
{% endif %}
1212
<span>{{ page.title | escape }}</span>
1313
</h1>

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<header class="post-header">
88
<h1 class="post-title">
99
{% if page.icon %}
10-
{% include icon.html name=page.icon _size='medium' %}
10+
{% include logo.html name=page.icon _size='medium' %}
1111
{% endif %}
1212
<span>{{ page.title | escape }}</span>
1313
</h1>

index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ Welcome to **Dev Cheatsheets** - a quick reference for showing you how to use a
2222
<div class="flex-container">
2323
<a href="{{ site.baseurl }}{% link cheatsheets/python/index.md %}">
2424
<div>
25-
{% include icon.html name="python" %}
25+
{% include logo.html name="python" %}
2626
<span>Python</span>
2727
</div>
2828
</a>
2929
<a href="{{ site.baseurl }}{% link cheatsheets/javascript/index.md %}">
3030
<div>
31-
{% include icon.html name="javascript" %}
31+
{% include logo.html name="javascript" %}
3232
<span>JavaScript</span>
3333
</div>
3434
</a>
@@ -39,13 +39,13 @@ Welcome to **Dev Cheatsheets** - a quick reference for showing you how to use a
3939
<div class="flex-container">
4040
<a href="{{ site.baseurl }}{% link cheatsheets/markdown/index.md %}">
4141
<div>
42-
{% include icon.html name="markdown" %}
42+
{% include logo.html name="markdown" %}
4343
<span>Markdown</span>
4444
</div>
4545
</a>
4646
<a href="{{ site.baseurl }}{% link cheatsheets/jekyll/index.md %}">
4747
<div>
48-
{% include icon.html name="jekyll" %}
48+
{% include logo.html name="jekyll" %}
4949
<span>Jekyll</span>
5050
</div>
5151
</a>
@@ -57,13 +57,13 @@ Welcome to **Dev Cheatsheets** - a quick reference for showing you how to use a
5757
<div class="flex-container">
5858
<a href="{{ site.baseurl }}{% link cheatsheets/git/index.md %}">
5959
<div>
60-
{% include icon.html name="git" %}
60+
{% include logo.html name="git" %}
6161
<span>Git</span>
6262
</div>
6363
</a>
6464
<a href="{{ site.baseurl }}{% link cheatsheets/shell/index.md %}">
6565
<div>
66-
{% include icon.html name="gnubash" %}
66+
{% include logo.html name="gnubash" %}
6767
<span>Shell</span>
6868
</div>
6969
</a>

0 commit comments

Comments
 (0)