Public Access
1
0

fix: resume button margin

This commit is contained in:
2025-08-21 21:21:44 -04:00
parent c7f3c7194b
commit 9f8b4f1812

View File

@@ -1,93 +1,93 @@
<!doctype html><!-- HTML5 --> <!doctype html><!-- HTML5 -->
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>{{ title }}</title> <title>{{ title }}</title>
<meta name="description" content="{{ description }}"> <meta name="description" content="{{ description }}">
<!-- Open Graph Meta Tags --> <!-- Open Graph Meta Tags -->
<meta property="og:title" content="{{ title }}"> <meta property="og:title" content="{{ title }}">
<meta property="og:description" content="{{ description }}"> <meta property="og:description" content="{{ description }}">
<meta property="og:type" content="article"> <meta property="og:type" content="article">
<meta property="og:url" content="{{ site.url }}{{ page.url }}"> <meta property="og:url" content="{{ site.url }}{{ page.url }}">
<meta property="og:image" content="{{ image }}"> <meta property="og:image" content="{{ image }}">
<!-- Twitter Card Meta Tags --> <!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image"> <meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{ title }}"> <meta name="twitter:title" content="{{ title }}">
<meta name="twitter:description" content="{{ description }}"> <meta name="twitter:description" content="{{ description }}">
<meta name="twitter:image" content="{{ image }}"> <meta name="twitter:image" content="{{ image }}">
<!-- Structured Data (JSON-LD) --> <!-- Structured Data (JSON-LD) -->
<script type="application/ld+json"> <script type="application/ld+json">
{ {
"@context": "https://schema.org", "@context": "https://schema.org",
"@type": "BlogPosting", "@type": "BlogPosting",
"headline": "{{ title }}", "headline": "{{ title }}",
"description": "{{ description }}", "description": "{{ description }}",
"image": "{{ image }}", "image": "{{ image }}",
"author": { "author": {
"@type": "Person", "@type": "Person",
"name": "{{ site.author.name }}" "name": "{{ site.author.name }}"
}, },
"datePublished": "{{ date }}", "datePublished": "{{ date }}",
"mainEntityOfPage": { "mainEntityOfPage": {
"@type": "WebPage", "@type": "WebPage",
"@id": "{{ site.url }}{{ page.url }}" "@id": "{{ site.url }}{{ page.url }}"
}
} }
} </script>
</script> <script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.tailwindcss.com"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> <link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/style.css"> <link rel="canonical" href="{{ site.url }}{{ page.url }}">
<link rel="canonical" href="{{ site.url }}{{ page.url }}"> <link rel="icon" type="image/x-icon" href="/favicon.png">
<link rel="icon" type="image/x-icon" href="/favicon.png"> </head>
</head> <body class="antialiased">
<body class="antialiased"> <!-- Header & Nav -->
<!-- Header & Nav --> <header class="sticky top-0 z-50 glass-card shadow-md">
<header class="sticky top-0 z-50 glass-card shadow-md"> <nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center"> <a href="/" class="text-3xl font-bold text-white">{{ site.author.shortname }}<span class="text-blue-500">.</span></a>
<a href="/" class="text-3xl font-bold text-white">{{ site.author.shortname }}<span class="text-blue-500">.</span></a> <div class="hidden md:flex space-x-6 items-center">
<div class="hidden md:flex space-x-6 items-center"> <a href="/#about" class="text-gray-300 hover:text-blue-400">About</a>
<a href="/#about" class="text-gray-300 hover:text-blue-400">About</a> <a href="/blog" class="text-gray-300 hover:text-blue-400">Blog</a>
<a href="/blog" class="text-gray-300 hover:text-blue-400">Blog</a> <!-- <a href="/#services" class="text-gray-300 hover:text-blue-400">Services</a> -->
<!-- <a href="/#services" class="text-gray-300 hover:text-blue-400">Services</a> --> <a href="/#skills" class="text-gray-300 hover:text-blue-400">Skills</a>
<a href="/#skills" class="text-gray-300 hover:text-blue-400">Skills</a> <a href="/#experience" class="text-gray-300 hover:text-blue-400">Experience</a>
<a href="/#experience" class="text-gray-300 hover:text-blue-400">Experience</a> <a href="/#contact" class="text-gray-300 hover:text-blue-400">Contact</a>
<a href="/#contact" class="text-gray-300 hover:text-blue-400">Contact</a> <a href="/{{ site.resumeUrl }}" target="_blank" class="btn">View Resume</a>
<a href="/{{ site.resumeUrl }}" target="_blank" class="btn">View Resume</a> </div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-white focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden px-6 pt-3 pb-4 space-y-3">
<a href="/#about" class="block text-gray-300 hover:text-blue-400">About</a>
<a href="/blog" class="block text-gray-300 hover:text-blue-400">Blog</a>
<!-- <a href="/#services" class="block text-gray-300 hover:text-blue-400">Services</a> -->
<a href="/#skills" class="block text-gray-300 hover:text-blue-400">Skills</a>
<a href="/#experience" class="block text-gray-300 hover:text-blue-400">Experience</a>
<a href="/#contact" class="block text-gray-300 hover:text-blue-400">Contact</a>
<a href="/{{ site.resumeUrl }}" style="margin-left: 4rem; margin-right: 4rem;" target="_blank" class="block btn mt-2 mb-2 m">View Resume</a>
</div> </div>
<div class="md:hidden"> </header>
<button id="mobile-menu-button" class="text-white focus:outline-none"> <main class="main-content container mx-auto px-6 py-12">
<i class="fas fa-bars text-2xl"></i> {{ content | safe }}
</button> </main>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-400 py-6">
<div class="container mx-auto px-6 text-center">
<div class="flex justify-center space-x-6 mb-4">
<a href="{{ site.author.linkedinUrl }}" target="_blank" class="hover:text-blue-400"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="mailto:{{ site.author.email }}" class="hover:text-blue-400"><i class="fas fa-envelope fa-2x"></i></a>
</div>
<p>&copy; {% year %} {{ site.author.name }}. All Rights Reserved.</p>
</div> </div>
</nav> </footer>
<!-- Mobile Menu --> <script src="/js/main.js"></script>
<div id="mobile-menu" class="hidden md:hidden px-6 pt-3 pb-4 space-y-3"> </body>
<a href="/#about" class="block text-gray-300 hover:text-blue-400">About</a>
<a href="/blog" class="block text-gray-300 hover:text-blue-400">Blog</a>
<!-- <a href="/#services" class="block text-gray-300 hover:text-blue-400">Services</a> -->
<a href="/#skills" class="block text-gray-300 hover:text-blue-400">Skills</a>
<a href="/#experience" class="block text-gray-300 hover:text-blue-400">Experience</a>
<a href="/#contact" class="block text-gray-300 hover:text-blue-400">Contact</a>
<a href="/{{ site.resumeUrl }}" target="_blank" class="hidden block btn mt-2">View Resume</a>
</div>
</header>
<main class="main-content container mx-auto px-6 py-12">
{{ content | safe }}
</main>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-400 py-6">
<div class="container mx-auto px-6 text-center">
<div class="flex justify-center space-x-6 mb-4">
<a href="{{ site.author.linkedinUrl }}" target="_blank" class="hover:text-blue-400"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="mailto:{{ site.author.email }}" class="hover:text-blue-400"><i class="fas fa-envelope fa-2x"></i></a>
</div>
<p>&copy; {% year %} {{ site.author.name }}. All Rights Reserved.</p>
</div>
</footer>
<script src="/js/main.js"></script>
</body>
</html> </html>