Skip to content

Commit 3dd745d

Browse files
committed
Replace octicons with Bootstrap Icons. #65
1 parent fa5ee51 commit 3dd745d

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

_layouts/project.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h2>{{page.title}}</h2>
1919
class="btn btn-outline-secondary mb-1 d-block"
2020
href="{{page.webpage}}"
2121
>
22-
{% octicon link-external height: 16 %} Webpage
22+
<i class="bi bi-box-arrow-in-up-left"></i> Webpage
2323
</a>
2424
{% comment %}
2525
<!-- prettier-ignore -->
@@ -41,28 +41,28 @@ <h2>{{page.title}}</h2>
4141
{% endcomment %}
4242

4343
<a class="btn btn-outline-secondary mb-1 d-block" href="{{repoURL}}">
44-
{% octicon mark-github height: 16 %} Repository
44+
<i class="bi bi-github"></i> Repository
4545
</a>
4646
{% endif %} {% if page.issues %}
4747
<a
4848
class="btn btn-outline-secondary mb-1 d-block"
4949
href="{{repoURL}}/issues"
5050
>
51-
{% octicon issue-opened height: 16 %} Issues
51+
<i class="bi bi-exclamation-circle"></i> Issues
5252
</a>
5353
{% endif %} {% if page.wiki %}
5454
<a
5555
class="btn btn-outline-secondary mb-1 d-block"
5656
href="{{repoURL}}/wiki"
5757
>
58-
{% octicon book height: 16 %} Wiki
58+
<i class="bi bi-book"></i> Wiki
5959
</a>
6060
{% endif %} {% if page.releases %}
6161
<a
6262
class="btn btn-outline-secondary mb-1 d-block"
6363
href="{{repoURL}}/releases"
6464
>
65-
{% octicon desktop-download height: 16 %} Releases
65+
<i class="bi bi-file-earmark-zip"></i> Releases
6666
</a>
6767
{% endif %}
6868
</div>

blog/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ <h3 class="card-title">{{ post.title }}</h3>
108108
<a class="page-link" href="{{ paginator.previous_page_path }}">
109109
<span aria-hidden="true">
110110
<span class="d-none d-xl-inline">
111-
{% octicon arrow-left height: 24 %}
111+
<i class="bi bi-chevron-left"></i>
112112
</span>
113113
<span class="d-xl-none">
114-
{% octicon arrow-left height: 16 %}
114+
<i class="bi bi-chevron-left"></i>
115115
</span>
116116
</span>
117117
<span class="visually-hidden">Previous Page</span>
@@ -198,10 +198,10 @@ <h3 class="card-title">{{ post.title }}</h3>
198198
>
199199
<span aria-hidden="true">
200200
<span class="d-none d-xl-inline">
201-
{% octicon arrow-right height: 24 %}
201+
<i class="bi bi-chevron-right"></i>
202202
</span>
203203
<span class="d-xl-none">
204-
{% octicon arrow-right height: 16 %}
204+
<i class="bi bi-chevron-right"></i>
205205
</span>
206206
</span>
207207
<span class="visually-hidden">Next Page</span>

contact.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h1>Contact</h1>
1212
<noscript>
1313
<div class="alert alert-danger my-5" role="alert">
1414
<p class="h4 alert-heading">
15-
{% octicon alert height: 24 %} Unsupported Configuration
15+
<i class="bi bi-exclamation-triangle"></i> Unsupported Configuration
1616
</p>
1717
<p>This contact form requires JavaScript in order to function.</p>
1818
<hr />

projects.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,14 @@ <h2>Projects</h2>
3434
<!-- <div class="container"> -->
3535
<div class="card mb-3">
3636
<div class="card-header text-white bg-info">
37-
{% octicon pin height: 16 %} Featured
37+
<i class="bi bi-pin-angle"></i> Featured
3838
</div>
3939
</div>
4040
{% else %}
4141
<!-- <section class="bg-light py-3"> -->
4242
<!-- <div class="container"> -->
4343
<div class="card mt-5 mb-3 bg-dark text-light">
44-
<div class="card-header">
45-
{% octicon archive height: 16 %} Other Projects
46-
</div>
44+
<div class="card-header"><i class="bi bi-archive"></i> Other Projects</div>
4745
</div>
4846
{% endif %} {% for project in sorted_projects %}
4947
<div class="card mb-3 mx-3 bg-light shadow-sm">

0 commit comments

Comments
 (0)