the home site for me: also iteration 3 or 4 of my site

chore: delete unused files

dunkirk.sh 67ba17f8 48355e7b

verified
compressedfav.jpg

This is a binary file and will not be displayed.

-72
test-code-blocks.html
···
-
<!DOCTYPE html>
-
<html lang="en">
-
<head>
-
<meta charset="UTF-8">
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
-
<title>Code Block Test</title>
-
<link rel="stylesheet" href="sass/css/reset.css">
-
<link rel="stylesheet" href="sass/css/suCSS.css">
-
<link rel="stylesheet" href="sass/css/mods.css">
-
<link rel="stylesheet" href="sass/css/syntax-theme.css">
-
<link rel="stylesheet" href="sass/css/code-blocks.css">
-
<style>
-
body {
-
padding: 20px;
-
}
-
h1 {
-
margin-bottom: 30px;
-
}
-
.test-section {
-
margin-bottom: 40px;
-
}
-
</style>
-
</head>
-
<body>
-
<h1>Code Block Styling Test</h1>
-
-
<div class="test-section">
-
<h2>With JavaScript (Copy Button)</h2>
-
<blockquote>A comment about this code</blockquote>
-
<pre class="language-javascript" data-lang="javascript">
-
<code>// This is some JavaScript code
-
function sayHello() {
-
console.log("Hello, world!");
-
}
-
-
// Call the function
-
sayHello();</code></pre>
-
</div>
-
-
<div class="test-section">
-
<h2>Without JavaScript (No Copy Button)</h2>
-
<blockquote>A comment about this CSS</blockquote>
-
<pre class="language-css" data-lang="css">
-
<code>/* This is some CSS code */
-
.container {
-
display: flex;
-
flex-direction: column;
-
justify-content: center;
-
}
-
-
.item {
-
color: var(--accent);
-
margin: 10px;
-
}</code></pre>
-
</div>
-
-
<div class="test-section">
-
<h2>Regular Pre Tag (No Language)</h2>
-
<pre>
-
<code>This is a regular code block
-
with no language specified
-
and no copy button.</code></pre>
-
</div>
-
-
<div class="test-section">
-
<h2>Inline Code Example</h2>
-
<p>Here's some <code>inline code</code> that should be styled differently.</p>
-
</div>
-
-
<script src="static/js/copy-button.js"></script>
-
</body>
-
</html>