Browse Source

Add main layout template and update index.html structure for improved styling and social links

codeskraps 3 days ago
parent
commit
2f5bf68cca
2 changed files with 43 additions and 36 deletions
  1. 17 0
      layouts/index.html
  2. 26 36
      public/index.html

+ 17 - 0
layouts/index.html

@@ -0,0 +1,17 @@
+{{ define "main" }}
+<div class="content">
+    <div class="intro" style="min-height: calc(100vh - 150px); display: flex; flex-direction: column; align-items: center; justify-content: center;">
+        <img src="/favicon.ico" alt="codeskraps logo" style="width: 48px; height: 48px; margin-bottom: 3rem;" />
+        <div class="intro-title" style="font-family: 'Fira Mono', monospace; font-size: 3rem; font-weight: 500; margin-bottom: 3rem;">{{ .Site.Title }}</div>
+        {{ with .Site.Params.social }}
+        <div class="intro-social" style="display: flex; gap: 2rem;">
+            {{ range . }}
+            <a href="{{ .url }}" {{ with .target }}target="{{ . }}"{{ end }} {{ with .aria }}aria-label="{{ . }}"{{ end }}>
+                {{ .name }}
+            </a>
+            {{ end }}
+        </div>
+        {{ end }}
+    </div>
+</div>
+{{ end }} 

+ 26 - 36
public/index.html

@@ -3,8 +3,8 @@
 
 <head>
     <title>
-        Home | codeskraps
-    </title>
+        codeskraps
+        </title>
 
     <meta http-equiv="content-type" content="text/html; charset=utf-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -78,51 +78,41 @@
 </header>
 
 
-        <div class="content vertical">
+        <div class="content">
             <main class="main">
-                <div class="indexWrapper">
-                    <div>
-                        <h1 class="indexHeader">codeskraps</h1>
-                    </div>
-                    
-                        <div class="socialNavbar">
-    <ul>
-        
-        <li>
-            
-                <a href="https://repo.codeskraps.com/codeskraps"  target="_blank"  aria-label="Repo Profile"   >repo</a>
-            
-        </li>
-        
-        <li>
-            
-                <a href="https://github.com/codeskraps"  target="_blank"  aria-label="GitHub Profile"   >github</a>
-            
-        </li>
+                
+<div class="content">
+    <div class="intro" style="min-height: calc(100vh - 150px); display: flex; flex-direction: column; align-items: center; justify-content: center;">
+        <img src="/favicon.ico" alt="codeskraps logo" style="width: 48px; height: 48px; margin-bottom: 3rem;" />
+        <div class="intro-title" style="font-family: 'Fira Mono', monospace; font-size: 3rem; font-weight: 500; margin-bottom: 3rem;">codeskraps</div>
         
-        <li>
+        <div class="intro-social" style="display: flex; gap: 2rem;">
             
-                <a href="https://play.google.com/store/apps/developer?id=Codeskraps"  target="_blank"  aria-label="Google Play"   >google play</a>
+            <a href="https://repo.codeskraps.com/codeskraps" target="_blank" aria-label="Repo Profile">
+                repo
+            </a>
             
-        </li>
-        
-        <li>
+            <a href="https://github.com/codeskraps" target="_blank" aria-label="GitHub Profile">
+                github
+            </a>
             
-                <a href="https://www.linkedin.com/in/carles-sentis-4a072130"  target="_blank"  aria-label="LinkedIn Profile"   >linkedin</a>
+            <a href="https://play.google.com/store/apps/developer?id=Codeskraps" target="_blank" aria-label="Google Play">
+                google play
+            </a>
             
-        </li>
-        
-        <li>
+            <a href="https://www.linkedin.com/in/carles-sentis-4a072130" target="_blank" aria-label="LinkedIn Profile">
+                linkedin
+            </a>
             
-                <a href="mailto:me@codeskraps.com"  >email</a>
+            <a href="mailto:me@codeskraps.com"  aria-label="Email me">
+                email
+            </a>
             
-        </li>
+        </div>
         
-    </ul>
+    </div>
 </div>
 
-                    
-                </div>
             </main>
         </div>