Skip to content

Commit 39a3ab0

Browse files
committed
Clippit
1 parent 69c8616 commit 39a3ab0

6 files changed

+164
-57
lines changed
-27.2 KB
Binary file not shown.
27.1 KB
Binary file not shown.

files/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
<div class="position-fixed bottom-0 end-0 p-3" style="z-index: 11">
4747
<div id="liveToast" class="toast bg-dark" role="alert" aria-live="assertive" aria-atomic="true">
4848
<div class="toast-header">
49-
<!-- <img src="..." class="rounded me-2" alt="..."> -->
5049
<strong class="me-auto"></strong>
5150
<small class="right-msg"></small>
5251
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
@@ -79,6 +78,10 @@
7978
<img src="https://cdn.freebiesupply.com/logos/large/2x/python-5-logo-png-transparent.png" alt="" width="60" height="60">
8079
Python Programming Language
8180
</li>
81+
<li class="list-group-item list-group-item-dark text-truncate" title="Docker">
82+
<img src="https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/97_Docker_logo_logos-512.png" alt="" width="60" height="60">
83+
Docker
84+
</li>
8285
<li class="list-group-item list-group-item-dark text-truncate" title="Podman">
8386
<img src="https://pbs.twimg.com/media/Ex4zUY5WEAQlVqW.png" alt="" width="60" height="60">
8487
Podman
@@ -135,10 +138,6 @@
135138
<img src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fpluspng.com%2Fimg-png%2Fnodejs-png-nodejs-icon-png-50-px-1600.png" alt="" width="60" height="60">
136139
Node
137140
</li>
138-
<li class="list-group-item list-group-item-dark text-truncate" title="Docker">
139-
<img src="https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/97_Docker_logo_logos-512.png" alt="" width="60" height="60">
140-
Docker
141-
</li>
142141
</ul>
143142
</div>
144143
</div>
@@ -173,7 +172,7 @@
173172
</div>
174173
<div class="pt-5">
175174
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
176-
<p class="col-md-4 mb-0 mt-0 text-muted">Last Updated: 2024-02-22</p>
175+
<p class="col-md-4 mb-0 mt-0 text-muted">Last Updated: 2024-04-01</p>
177176
<a href="./files/public-key.pem" class="btn btn-dark">Public Key</a>
178177
</footer>
179178
</div>

package-lock.json

Lines changed: 157 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/material.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async function startToast(x: number) {
2121
let toastbody = document.querySelector('#liveToast .toast-body');
2222
let toastheader = document.querySelector('#liveToast .me-auto');
2323
let toastright = document.querySelector('#liveToast .right-msg');
24-
toastbody.textContent = greeting;
24+
toastbody.innerHTML = `<img src="https://static.wikia.nocookie.net/mugen/images/e/e8/ClippyArtwork.png" width="25%" class="rounded me-2" alt = "..."><span>${greeting}</span>`;
2525
toastheader.textContent = "Hello there!";
2626
toastright.textContent = "just now";
2727
let toast = new BS.Toast(toastLive);

0 commit comments

Comments
 (0)