-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b99e29f
commit a633a87
Showing
170 changed files
with
13,874 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "themes/paper"] | ||
path = themes/paper | ||
[submodule "themes/hugo-paper"] | ||
path = themes/hugo-paper | ||
url = https://github.com/nanxiaobei/hugo-paper |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
date = '{{ .Date }}' | ||
draft = true | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
+++ |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
content/post/laboratorio-2.md → content/posts/laboratorio-2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,296 @@ | ||
<!doctype html> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<html | ||
class="not-ready lg:text-base" | ||
style="--bg: #faf8f1" | ||
lang="pt" | ||
dir="ltr" | ||
> | ||
<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, shrink-to-fit=no" | ||
/> | ||
|
||
|
||
<title>404 Page not found - Car Store</title> | ||
|
||
|
||
<meta name="theme-color" /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<meta | ||
name="description" | ||
content="A personal blog" | ||
/> | ||
<meta name="author" content="Enoque Leal" /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="preload stylesheet" as="style" href="//localhost:1313/main.min.css" /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="preload" as="image" href="//localhost:1313/theme.png" /> | ||
|
||
|
||
|
||
|
||
|
||
<link rel="preload" as="image" href="https://avatars.githubusercontent.com/u/127161266?v=4" /> | ||
|
||
|
||
|
||
|
||
|
||
<link rel="preload" as="image" href="//localhost:1313/twitter.svg" /> | ||
|
||
<link rel="preload" as="image" href="//localhost:1313/github.svg" /> | ||
|
||
<link rel="preload" as="image" href="//localhost:1313/instagram.svg" /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<link | ||
rel="icon" | ||
href="//localhost:1313/favicon.ico" | ||
/> | ||
<link | ||
rel="apple-touch-icon" | ||
href="//localhost:1313/apple-touch-icon.png" | ||
/> | ||
|
||
|
||
<meta name="generator" content="Hugo 0.144.2"> | ||
|
||
|
||
|
||
|
||
</head> | ||
|
||
<body class="text-black duration-200 ease-out dark:text-white"> | ||
<header class="mx-auto flex h-[4.5rem] max-w-[--w] px-8 lg:justify-center"> | ||
<div class="relative z-50 ltr:mr-auto rtl:ml-auto flex items-center"> | ||
<a class="-translate-y-[1px] text-2xl font-medium" href="//localhost:1313/" | ||
>Car Store</a | ||
> | ||
<div | ||
class="btn-dark text-[0] ltr:ml-4 rtl:mr-4 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.png)_left_center/_auto_theme('spacing.6')_no-repeat] [transition:_background-position_0.4s_steps(5)] dark:[background-position:right]" | ||
role="button" | ||
aria-label="Dark" | ||
></div> | ||
</div> | ||
|
||
<div | ||
class="btn-menu relative z-50 ltr:-mr-8 rtl:-ml-8 flex h-[4.5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden" | ||
role="button" | ||
aria-label="Menu" | ||
></div> | ||
|
||
|
||
|
||
<script> | ||
|
||
const htmlClass = document.documentElement.classList; | ||
setTimeout(() => { | ||
htmlClass.remove('not-ready'); | ||
}, 10); | ||
|
||
|
||
const btnMenu = document.querySelector('.btn-menu'); | ||
btnMenu.addEventListener('click', () => { | ||
htmlClass.toggle('open'); | ||
}); | ||
|
||
|
||
const metaTheme = document.querySelector('meta[name="theme-color"]'); | ||
const lightBg = '#faf8f1'.replace(/"/g, ''); | ||
const setDark = (isDark) => { | ||
metaTheme.setAttribute('content', isDark ? '#000' : lightBg); | ||
htmlClass[isDark ? 'add' : 'remove']('dark'); | ||
localStorage.setItem('dark', isDark); | ||
}; | ||
|
||
|
||
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)'); | ||
if (htmlClass.contains('dark')) { | ||
setDark(true); | ||
} else { | ||
const darkVal = localStorage.getItem('dark'); | ||
setDark(darkVal ? darkVal === 'true' : darkScheme.matches); | ||
} | ||
|
||
|
||
darkScheme.addEventListener('change', (event) => { | ||
setDark(event.matches); | ||
}); | ||
|
||
|
||
const btnDark = document.querySelector('.btn-dark'); | ||
btnDark.addEventListener('click', () => { | ||
setDark(localStorage.getItem('dark') !== 'true'); | ||
}); | ||
</script> | ||
|
||
<div | ||
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none" | ||
> | ||
|
||
|
||
<nav class="lg:ml-12 lg:flex lg:flex-row lg:items-center lg:space-x-10 rtl:space-x-reverse"> | ||
|
||
<a | ||
class="block text-center text-xl leading-[5rem] lg:text-base lg:font-normal" | ||
href="/about/" | ||
>About</a | ||
> | ||
|
||
<a | ||
class="block text-center text-xl leading-[5rem] lg:text-base lg:font-normal" | ||
href="http://youtube.com/@enoque-dev" | ||
>YouTube</a | ||
> | ||
|
||
</nav> | ||
|
||
|
||
|
||
<nav | ||
class="mt-12 flex justify-center space-x-10 rtl:space-x-reverse dark:invert ltr:lg:ml-14 rtl:lg:mr-14 lg:mt-0 lg:items-center" | ||
> | ||
|
||
<a | ||
class="h-7 w-7 text-[0] [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6" | ||
style="--url: url(./twitter.svg)" | ||
href="https://twitter.com/enoquefsleal" | ||
target="_blank" | ||
rel="me" | ||
> | ||
</a> | ||
|
||
<a | ||
class="h-7 w-7 text-[0] [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6" | ||
style="--url: url(./github.svg)" | ||
href="https://github.com/professor-enoqueleal" | ||
target="_blank" | ||
rel="me" | ||
> | ||
github | ||
</a> | ||
|
||
<a | ||
class="h-7 w-7 text-[0] [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6" | ||
style="--url: url(./instagram.svg)" | ||
href="https://instagram.com/enoque.dev" | ||
target="_blank" | ||
rel="me" | ||
> | ||
</a> | ||
|
||
</nav> | ||
|
||
</div> | ||
</header> | ||
|
||
|
||
<main | ||
class="prose prose-neutral relative mx-auto min-h-[calc(100vh-9rem)] max-w-[--w] px-8 pb-16 pt-14 dark:prose-invert" | ||
> | ||
|
||
<h1 | ||
class="absolute inset-x-8 bottom-20 top-0 flex items-center justify-center text-9xl" | ||
> | ||
404 | ||
</h1> | ||
|
||
</main> | ||
|
||
<footer | ||
class="mx-auto flex h-[4.5rem] max-w-[--w] items-center px-8 text-xs uppercase tracking-wider opacity-60" | ||
> | ||
<div class="mr-auto"> | ||
|
||
© 2025 | ||
<a class="link" href="//localhost:1313/">Car Store</a> | ||
|
||
</div> | ||
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank" | ||
>powered by hugo️️</a | ||
>️ | ||
<a | ||
class="link" | ||
href="https://github.com/nanxiaobei/hugo-paper" | ||
rel="noopener" | ||
target="_blank" | ||
>hugo-paper</a | ||
> | ||
</footer> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.