mirror of
https://github.com/miggymofongo/asteroid.git
synced 2024-11-24 06:00:27 +00:00
168 lines
5.8 KiB
HTML
168 lines
5.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<title>El Asteroide De Miguel</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
|
<script src="https://unpkg.com/htmx.org@1.9.10" integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC" crossorigin="anonymous"></script>
|
|
<style>
|
|
.quote-banner {
|
|
/* Your styling for the banner */
|
|
padding: 10px;
|
|
text-decoration: blue;
|
|
font-weight: bold;
|
|
background-color: #a88a8a;
|
|
text-align: center;
|
|
/* other styles as needed */
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<nav class="navbar navbar-expand-lg sticky-top bg-body-tertiary">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#">Bienvenidos a mi Asteroide!</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNavDropdown">
|
|
<ul class="navbar-nav">
|
|
<!-- Home Page Link -->
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/home">Home</a>
|
|
</li>
|
|
|
|
<!-- Resume Dropdown -->
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" id="navbarResume" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
Resume
|
|
</a>
|
|
<ul class="dropdown-menu" aria-labelledby="navbarResume">
|
|
<li><a class="dropdown-item" href="/resume1">Hospitality</a></li>
|
|
<li><a class="dropdown-item" href="/resume2">Organizing</a></li>
|
|
<li><a class="dropdown-item" href="/resume3">Tech</a></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<!-- Library Link -->
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="https://library.miguelalmodo.com/">Library</a>
|
|
</li>
|
|
|
|
<!-- Blog Dropdown -->
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="https://migs.uber.space/blog" id="navbarBlog" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
Blog
|
|
</a>
|
|
<ul class="dropdown-menu" aria-labelledby="navbarBlog">
|
|
<li><a class="dropdown-item" href="/blog1">Blog 1</a></li>
|
|
<li><a class="dropdown-item" href="/blog2">Blog 2</a></li>
|
|
<li><a class="dropdown-item" href="/blog3">Blog 3</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<section class="hero">
|
|
<h2>This site is hosted on my asteroid at Uberspace.de.</h2>
|
|
<p>Scroll through to learn a little more about me!</p>
|
|
|
|
|
|
<div class="card mb-3" style="max-width: 540px;">
|
|
<div class="row g-0">
|
|
<div class="col-md-4">
|
|
<img class="imga-fluid rounded-start" src="/img/headshot.jpg" alt="miguel headshot" style="width:100%">
|
|
</div>
|
|
<div class="col-md-8">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Card title</h5>
|
|
<p class="card-text">Miguel is currently studying for a <a href="https://partners.comptia.org/certifications/a">COMPTIA certification</a> <br>
|
|
Follow me on github and linkedin!</p>
|
|
<p class="card-text"><small class="text-body-secondary"><a href="https://miguelalmodo.com/about" class="btn btn-primary">See Main Bio</a>Last updated 3 months ago</small></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<div class="container">
|
|
<section>
|
|
<div class="container-fluid">
|
|
<!-- In your HTML file -->
|
|
<div id="quoteBanner" class="quote-banner">Quote goes here</div>
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
fetch('quotes.json')
|
|
.then(response => response.json())
|
|
.then(quotes => {
|
|
let currentQuoteIndex = 0;
|
|
const quoteBanner = document.getElementById('quoteBanner');
|
|
|
|
// Function to update quote
|
|
function updateQuote() {
|
|
quoteBanner.textContent = quotes[currentQuoteIndex++];
|
|
if (currentQuoteIndex >= quotes.length) currentQuoteIndex = 0;
|
|
}
|
|
|
|
// Set initial quote and update every 10 seconds
|
|
updateQuote();
|
|
setInterval(updateQuote, 10000);
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
|
<section>
|
|
<div class="container">
|
|
<p>Aqui puedes completar tareas sobre la ciencia politica y varias otras temas
|
|
<form class="d-flex" role="search">
|
|
<input type="search"
|
|
hx-get="/search"
|
|
hx-vals='{"searchQuery": "value"}'
|
|
hx-trigger="keyup delay:300ms"
|
|
hx-target="#resultsContainer"
|
|
placeholder="Search for EPUBs...">
|
|
</form>
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
<!-- search results -->
|
|
<div id="resultsContainer"></div>
|
|
<!-- search results -->
|
|
</section>
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
|
|
|
|
|
</body>
|
|
</html>
|