forked from miguel/dejael10
primer commit
This commit is contained in:
commit
353239bda6
112 changed files with 7135 additions and 0 deletions
204
public/categories/hello/index.html
Normal file
204
public/categories/hello/index.html
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-US" class="scroll-smooth dark">
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Hello</title>
|
||||
<meta
|
||||
name="description"
|
||||
content=""
|
||||
/>
|
||||
<link rel="canonical" href="http://localhost:1313/categories/hello/" />
|
||||
<link rel="robots" href="/robots.txt" />
|
||||
|
||||
<link rel="icon" type="image/x-icon" href="/icons/favicon.ico" />
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
|
||||
<script type="text/x-mathjax-config">MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']] } });</script>
|
||||
|
||||
<link rel="stylesheet" href="http://localhost:1313/css/app.css" /></head>
|
||||
|
||||
<body class="max-w-screen-md mx-auto px-2.5">
|
||||
<div class="header">
|
||||
<header class="flex flex-col sm:flex-row items-center gap-5 sm:gap-10 pt-16 py-2">
|
||||
|
||||
|
||||
|
||||
<div class="flex-none w-full h-full overflow-hidden">
|
||||
<a href="http://localhost:1313/">
|
||||
<img
|
||||
srcset="/img/logo_hu_5a4c164ec92d2dcd.png 80w"
|
||||
src="/img/logo.png"
|
||||
width="232"
|
||||
height="121"
|
||||
alt="Deja el 10"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<button class="toggle-theme" aria-label="Toggle Theme" title="Toggle Theme" onclick="toggleTheme()">
|
||||
<span class="theme-icon light"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z" />
|
||||
</svg> </span>
|
||||
<span class="theme-icon dark"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z" />
|
||||
</svg> </span>
|
||||
</button>
|
||||
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
const theme = localStorage.getItem('theme');
|
||||
|
||||
if (!theme || theme === 'light') {
|
||||
setTheme('light');
|
||||
} else {
|
||||
setTheme(theme);
|
||||
}
|
||||
});
|
||||
|
||||
function setTheme(theme) {
|
||||
const html = document.querySelector('html');
|
||||
localStorage.setItem('theme', theme);
|
||||
|
||||
if (theme === 'light') {
|
||||
if (html.classList.contains('dark')) {
|
||||
document.querySelector('html').classList.remove('dark');
|
||||
}
|
||||
|
||||
document.querySelector('.theme-icon.light').style.display = 'none';
|
||||
document.querySelector('.theme-icon.dark').style.display = 'block';
|
||||
} else {
|
||||
if (!html.classList.contains('dark')) {
|
||||
document.querySelector('html').classList.add('dark');
|
||||
}
|
||||
|
||||
document.querySelector('.theme-icon.dark').style.display = 'none';
|
||||
document.querySelector('.theme-icon.light').style.display = 'block';
|
||||
}
|
||||
}
|
||||
|
||||
function toggleTheme() {
|
||||
const theme = localStorage.getItem('theme');
|
||||
|
||||
if (theme === 'light') {
|
||||
setTheme('dark');
|
||||
} else {
|
||||
setTheme('light');
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<main id="content">
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="flex flex-col gap-1">
|
||||
<h1 class="text-2xl font-extrabold">
|
||||
|
||||
Hello
|
||||
|
||||
</h1>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<section class="flex flex-col gap-10">
|
||||
|
||||
<article class="flex flex-col gap-1">
|
||||
<h1>
|
||||
<a href="http://localhost:1313/posts/markdown-cheat-sheet/">Markdown Cheat Sheet</a>
|
||||
</h1>
|
||||
|
||||
<span class="date">
|
||||
<time datetime="2022-08-27 09:16:45 +0000 UTC" title='Sat, Aug 27, 2022, 9:16 AM UTC'>
|
||||
27/08/2022
|
||||
</time>
|
||||
</span>
|
||||
|
||||
<div class="description">
|
||||
|
||||
Markdown is a powerful tool for creating rich text using a plain text editor. This cheatsheet is a quick reference for Markdown syntax.
|
||||
|
||||
</div>
|
||||
|
||||
<div class="mt-2">
|
||||
<a class="read-more" href="http://localhost:1313/posts/markdown-cheat-sheet/">
|
||||
|
||||
<span class="w-4 h-4 stroke-2">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3" />
|
||||
</svg>
|
||||
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
</main><footer class="pt-5 pb-10 grid gap-3 sm:grid-cols-1">
|
||||
<div class="text-xs font-semibold text-gray-500 order-2 sm:order-1">
|
||||
🄯 2026 CMXSL — Hecho
|
||||
<span class="font-normal">con</span>
|
||||
<a
|
||||
href="https://github.com/nixentric/Lowkey-Hugo-Theme"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Lowkey
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="text-xs font-semibold text-gray-500 order-2 sm:order-1">
|
||||
<span class="font-normal">
|
||||
El contenido de este sitio esta bajo la
|
||||
</span>
|
||||
<a
|
||||
href="https://creativecommons.org/licenses/by-sa/4.0/deed.es"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Licencia Creative Commons Atribución-CompartirIgual 4.0 Internacional
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="order-1 sm:order-2">
|
||||
<ul class="flex sm:justify-end gap-5">
|
||||
|
||||
|
||||
<li>
|
||||
<a href="https://mstdn.mx/@cmxsl" target="_blank" rel="me noopener noreferrer">Mastodon</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://media.cmxsl.org/" target="_blank" rel="me noopener noreferrer">Mediagoblin</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="https://git.cmxsl.org/" target="_blank" rel="me noopener noreferrer">Código fuente del sitio</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
20
public/categories/hello/index.xml
Normal file
20
public/categories/hello/index.xml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Hello on Deja el 10</title>
|
||||
<link>http://localhost:1313/categories/hello/</link>
|
||||
<description>Recent content in Hello on Deja el 10</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en-US</language>
|
||||
<copyright>{year}</copyright>
|
||||
<lastBuildDate>Sat, 27 Aug 2022 09:16:45 +0000</lastBuildDate>
|
||||
<atom:link href="http://localhost:1313/categories/hello/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Markdown Cheat Sheet</title>
|
||||
<link>http://localhost:1313/posts/markdown-cheat-sheet/</link>
|
||||
<pubDate>Sat, 27 Aug 2022 09:16:45 +0000</pubDate>
|
||||
<guid>http://localhost:1313/posts/markdown-cheat-sheet/</guid>
|
||||
<description><p>This Markdown cheat sheet <strong>provides</strong> a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic <em>syntax</em> and extended syntax.</p></description>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
9
public/categories/hello/page/1/index.html
Normal file
9
public/categories/hello/page/1/index.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<title>http://localhost:1313/categories/hello/</title>
|
||||
<link rel="canonical" href="http://localhost:1313/categories/hello/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://localhost:1313/categories/hello/">
|
||||
</head>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue