]> prime8.dev >> repos - p8d.git/commitdiff
Small fixes master
authorDamian Myrda <damian@prime8.dev>
Tue, 19 Nov 2024 22:43:31 +0000 (16:43 -0600)
committerDamian Myrda <damian@prime8.dev>
Tue, 19 Nov 2024 22:43:31 +0000 (16:43 -0600)
Added favicon, modified padding, and added robots.txt

caddy
web/static/img/moncheeta.png [new file with mode: 0644]
web/templates/base.html
web/templates/index.html

diff --git a/caddy b/caddy
index 7297c5a4b1b3db009122c15ff2d846fa17155cc0..a3673eb1f2d9cea75f5f42f64c8fd0cddcc0d4d9 100644 (file)
--- a/caddy
+++ b/caddy
@@ -31,6 +31,10 @@ git.prime8.dev {
   reverse_proxy http://gitweb:80
   cache
 
+       header {
+               X-Robots-Tag "index, nofollow"
+       }
+
   tls damian@prime8.dev
 }
 
diff --git a/web/static/img/moncheeta.png b/web/static/img/moncheeta.png
new file mode 100644 (file)
index 0000000..07e43ee
Binary files /dev/null and b/web/static/img/moncheeta.png differ
index bdd259a3aa0701e263042535d0c516510af4d164..4c409c4b924c2fa85b37d3bdb2765c37197567b1 100644 (file)
@@ -3,6 +3,14 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+
+    <title>Damian Myrda</title>
+    <link rel="icon" type="image/png" href="/img/moncheeta.png" />
+    <meta
+      name="description"
+      content="Terminal enthusiast, learning from Curious George (the curious part, not the monkey business). Systems and backend programming are my focus. Striving to turn spaghetti code into well-structured algorithms and make every line count with efficiency and creativity."
+    />
+
     {% block title %}{% endblock %}
 
     <style>
       }
 
       #content {
-        padding: 24px 4px 8px 4px;
+        max-width: 800px;
+        margin: 0 auto 0 auto;
+        padding: 1rem 0 1rem 0;
       }
 
       pre {
-        color: #E8E6E3 !important;
+        color: #e8e6e3 !important;
         background-color: #000084 !important;
       }
+
+      h3 {
+        text-align: center !important;
+      }
     </style>
     <link href="/css/bootstrap.css" rel="stylesheet" media="screen" />
-    <link href="/css/bootstrap-responsive.css" rel="stylesheet">
+    <link href="/css/bootstrap-responsive.css" rel="stylesheet" />
 
     <script src="https://code.jquery.com/jquery.js"></script>
     <script>
index e72107b84a0b8e25e2a1e56eff37c6e406250440..3a05dfbd990756cc24c23ed74f33e99db8f1d3cc 100644 (file)
@@ -104,15 +104,4 @@ illinois   |___/        <a class="align-right" href="https://www.linkedin.com/in
        </div>
 </div>
 <script src="js/wakatime.js"></script>
-<style>
-  #content {
-    max-width: 800px !important;
-    margin: 1rem auto 0 auto !important;
-               padding: 0 !important;
-  }
-
-       h3 {
-               text-align: center;
-       }
-</style>
 {% endblock %}