Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 114 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% seo %}
<link rel="stylesheet" href="{{ "/assets/css/retro.css" | relative_url }}">
<link type="application/atom+xml" rel="alternate" href="{{ "/feed.xml" | relative_url }}" title="{{ site.title | escape }}">
</head>
<body>

<div class="site-wrapper">

<header class="site-header" role="banner">
<div>
<span class="stars">★★★</span>
<a class="site-title" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
<span class="stars">★★★</span>
</div>
<nav class="site-nav">
{%- for path in site.header_pages -%}
{%- assign my_page = site.pages | where: "path", path | first -%}
{%- if my_page.title -%}
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
{%- endif -%}
{%- else -%}
{%- for my_page in site.pages -%}
{%- if my_page.title -%}
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
{%- endif -%}
{%- endfor -%}
{%- endfor -%}
</nav>
</header>

<div class="marquee-wrapper">
<marquee behavior="scroll" direction="left">
★ ¡Bienvenido a mi página web! ★ &nbsp;&nbsp;&nbsp;
★ Welcome to the Information Superhighway! ★ &nbsp;&nbsp;&nbsp;
★ Best viewed in 800x600 resolution ★ &nbsp;&nbsp;&nbsp;
★ Netscape Navigator 4.0 recommended ★ &nbsp;&nbsp;&nbsp;
★ ¡Esta página está en construcción! ★
</marquee>
</div>
Comment on lines +37 to +45
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This layout uses a scrolling <marquee>, which is deprecated and creates significant accessibility issues (no pause/stop control; problematic for motion sensitivity and screen readers). Consider replacing it with a CSS animation that can be disabled via prefers-reduced-motion, and/or provide a non-animated fallback + a user control to pause the animation.

Copilot uses AI. Check for mistakes.

<hr>

<main class="page-content" aria-label="Content">
<div class="wrapper">
{{ content }}
</div>
</main>

<hr>

<div class="under-construction">
🚧 <span class="blink">⚠️ PÁGINA EN CONSTRUCCIÓN ⚠️</span> 🚧
<br>
<small>Esta página se actualiza constantemente. ¡Vuelve pronto!</small>
</div>

<div style="text-align: center; padding: 10px;">
<span>Visitas: </span>
<span class="visitor-counter">001337</span>
<br><br>
<div class="best-viewed">
🖥️ Esta página se ve mejor con Netscape Navigator 4.0 en resolución 800×600 | IE 5.0 compatible
</div>
</div>
Comment on lines +63 to +70
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inline styles here make the layout harder to maintain/theme (and force overrides to use higher specificity). Please move these presentation concerns into assets/css/retro.css via a dedicated class (e.g., for the centered counter block) instead of style="..." attributes.

Copilot uses AI. Check for mistakes.

<footer class="site-footer h-card">
<data class="u-url" href="{{ "/" | relative_url }}"></data>

<div class="wrapper">
<h2 class="footer-heading">{{ site.title | escape }}</h2>

<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">
{%- if site.author -%}
{{ site.author | escape }}
{%- else -%}
{{ site.title | escape }}
{%- endif -%}
</li>
{%- if site.email -%}
<li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
{%- endif -%}
</ul>
</div>

<div class="footer-col footer-col-2">
{%- include social.html -%}
</div>

<div class="footer-col footer-col-3">
<p>{{ site.description | escape }}</p>
<p style="margin-top: 10px; font-size: 0.8em; color: #AAAAAA;">
&copy; {{ site.time | date: "%Y" }} {{ site.title | escape }} &mdash;
Hecho con ❤️ y <a href="https://jekyllrb.com" style="color: #00FF00 !important;">Jekyll</a>
Comment on lines +100 to +102
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This footer paragraph uses inline styling (margin/font-size/color) and an inline style on the Jekyll link. Please move these styles into retro.css classes so they can be reused/overridden cleanly (and to keep HTML focused on structure/content).

Suggested change
<p style="margin-top: 10px; font-size: 0.8em; color: #AAAAAA;">
&copy; {{ site.time | date: "%Y" }} {{ site.title | escape }} &mdash;
Hecho con ❤️ y <a href="https://jekyllrb.com" style="color: #00FF00 !important;">Jekyll</a>
<p class="footer-meta">
&copy; {{ site.time | date: "%Y" }} {{ site.title | escape }} &mdash;
Hecho con ❤️ y <a href="https://jekyllrb.com" class="footer-meta-jekyll-link">Jekyll</a>

Copilot uses AI. Check for mistakes.
</p>
</div>
</div>

</div>

</footer>

</div>

</body>
</html>
115 changes: 77 additions & 38 deletions _site/2025/08/23/compre-un-ordenador-por-40-euros.html
Original file line number Diff line number Diff line change
@@ -1,48 +1,63 @@
<!DOCTYPE html>
<html lang="en"><head>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.8.0 -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Begin Jekyll SEO tag v2.8.0 -->
<title>Compré un ordenador por 40 euros | Wow</title>
<meta name="generator" content="Jekyll v3.10.0" />
<meta property="og:title" content="Compré un ordenador por 40 euros" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Hoy, a apenas dos semanas de volver a la rutina universitaria (aunque este año cambie mucho) he comprado por vinted por unos 40 euros un ordenador con su pantalla, teclado, ratón e incluso Webcam (hubo un tiempo durante la pandemia en el que se volvieron super escasas… que tiempos)." />
<meta property="og:description" content="Hoy, a apenas dos semanas de volver a la rutina universitaria (aunque este año cambie mucho) he comprado por vinted por unos 40 euros un ordenador con su pantalla, teclado, ratón e incluso Webcam (hubo un tiempo durante la pandemia en el que se volvieron super escasas… que tiempos)." />
<link rel="canonical" href="http://localhost:4000/2025/08/23/compre-un-ordenador-por-40-euros.html" />
<meta property="og:url" content="http://localhost:4000/2025/08/23/compre-un-ordenador-por-40-euros.html" />
<link rel="canonical" href="https://mateofra.github.io/2025/08/23/compre-un-ordenador-por-40-euros.html" />
<meta property="og:url" content="https://mateofra.github.io/2025/08/23/compre-un-ordenador-por-40-euros.html" />
<meta property="og:site_name" content="Wow" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2025-08-23T00:00:00+02:00" />
<meta property="article:published_time" content="2025-08-23T00:00:00+00:00" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Compré un ordenador por 40 euros" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2025-08-23T00:00:00+02:00","datePublished":"2025-08-23T00:00:00+02:00","description":"Hoy, a apenas dos semanas de volver a la rutina universitaria (aunque este año cambie mucho) he comprado por vinted por unos 40 euros un ordenador con su pantalla, teclado, ratón e incluso Webcam (hubo un tiempo durante la pandemia en el que se volvieron super escasas… que tiempos).","headline":"Compré un ordenador por 40 euros","mainEntityOfPage":{"@type":"WebPage","@id":"http://localhost:4000/2025/08/23/compre-un-ordenador-por-40-euros.html"},"url":"http://localhost:4000/2025/08/23/compre-un-ordenador-por-40-euros.html"}</script>
{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2025-08-23T00:00:00+00:00","datePublished":"2025-08-23T00:00:00+00:00","description":"Hoy, a apenas dos semanas de volver a la rutina universitaria (aunque este año cambie mucho) he comprado por vinted por unos 40 euros un ordenador con su pantalla, teclado, ratón e incluso Webcam (hubo un tiempo durante la pandemia en el que se volvieron super escasas… que tiempos).","headline":"Compré un ordenador por 40 euros","mainEntityOfPage":{"@type":"WebPage","@id":"https://mateofra.github.io/2025/08/23/compre-un-ordenador-por-40-euros.html"},"url":"https://mateofra.github.io/2025/08/23/compre-un-ordenador-por-40-euros.html"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/main.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Wow" /></head>
<body><header class="site-header" role="banner">

<div class="wrapper"><a class="site-title" rel="author" href="/">Wow</a><nav class="site-nav">
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger">
<span class="menu-icon">
<svg viewBox="0 0 18 15" width="18px" height="15px">
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
</svg>
</span>
</label>

<div class="trigger"><a class="page-link" href="/">Test</a><a class="page-link" href="/markdown.html">Markdown</a></div>
</nav></div>
</header>
<main class="page-content" aria-label="Content">

<link rel="stylesheet" href="/assets/css/retro.css">
<link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Wow">
</head>
<body>

<div class="site-wrapper">

<header class="site-header" role="banner">
<div>
<span class="stars">★★★</span>
<a class="site-title" href="/">Wow</a>
<span class="stars">★★★</span>
</div>
<nav class="site-nav"><a class="page-link" href="/">Test</a><a class="page-link" href="/markdown.html">Markdown</a></nav>
</header>

<div class="marquee-wrapper">
<marquee behavior="scroll" direction="left">
★ ¡Bienvenido a mi página web! ★ &nbsp;&nbsp;&nbsp;
★ Welcome to the Information Superhighway! ★ &nbsp;&nbsp;&nbsp;
★ Best viewed in 800x600 resolution ★ &nbsp;&nbsp;&nbsp;
★ Netscape Navigator 4.0 recommended ★ &nbsp;&nbsp;&nbsp;
★ ¡Esta página está en construcción! ★
</marquee>
</div>

<hr>

<main class="page-content" aria-label="Content">
<div class="wrapper">
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">

<header class="post-header">
<h1 class="post-title p-name" itemprop="name headline">Compré un ordenador por 40 euros</h1>
<p class="post-meta">
<time class="dt-published" datetime="2025-08-23T00:00:00+02:00" itemprop="datePublished">Aug 23, 2025
<time class="dt-published" datetime="2025-08-23T00:00:00+00:00" itemprop="datePublished">Aug 23, 2025
</time></p>
</header>

Expand All @@ -64,30 +79,54 @@ <h1 class="post-title p-name" itemprop="name headline">Compré un ordenador por
</article>

</div>
</main><footer class="site-footer h-card">
<data class="u-url" href="/"></data>
</main>

<div class="wrapper">
<hr>

<h2 class="footer-heading">Wow</h2>
<div class="under-construction">
🚧 <span class="blink">⚠️ PÁGINA EN CONSTRUCCIÓN ⚠️</span> 🚧
<br>
<small>Esta página se actualiza constantemente. ¡Vuelve pronto!</small>
</div>

<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">Wow</li><li><a class="u-email" href="mailto:abal@omeu.gal">abal@omeu.gal</a></li></ul>
<div style="text-align: center; padding: 10px;">
<span>Visitas: </span>
<span class="visitor-counter">001337</span>
<br><br>
<div class="best-viewed">
🖥️ Esta página se ve mejor con Netscape Navigator 4.0 en resolución 800×600 | IE 5.0 compatible
</div>
</div>

<div class="footer-col footer-col-2"><ul class="social-media-list"><li><a href="https://github.com/mateofra"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">mateofra</span></a></li><li><a href="https://www.twitter.com/farola_a"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#twitter"></use></svg> <span class="username">farola_a</span></a></li></ul>
<footer class="site-footer h-card">
<data class="u-url" href="/"></data>

<div class="wrapper">
<h2 class="footer-heading">Wow</h2>

<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">Wow</li><li><a class="u-email" href="mailto:abal@omeu.gal">abal@omeu.gal</a></li></ul>
</div>

<div class="footer-col footer-col-2"><ul class="social-media-list"><li><a href="https://github.com/mateofra"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">mateofra</span></a></li><li><a href="https://www.twitter.com/farola_a"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#twitter"></use></svg> <span class="username">farola_a</span></a></li></ul>
</div>

<div class="footer-col footer-col-3">
<p>Hola.</p>
<div class="footer-col footer-col-3">
<p>Hola.</p>
<p style="margin-top: 10px; font-size: 0.8em; color: #AAAAAA;">
&copy; 2026 Wow &mdash;
Hecho con ❤️ y <a href="https://jekyllrb.com" style="color: #00FF00 !important;">Jekyll</a>
</p>
</div>
</div>

</div>
</div>

</footer>

</div>

</footer>
</body>

</html>
Loading