This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/pages/404.html
2024-03-23 19:24:22 -07:00

20 lines
No EOL
732 B
HTML

---
title: 404
layout: default
permalink: /404.html
image: /assets/img/404.jpg
---
{% capture css %}
{% render "../assets/styles/pages/404.css" %}
{% endcapture %}
<style>{{ css }}</style>
<div class="four-oh-four__wrapper">
{% image './src/assets/img/404.jpg', title, 'image__banner', 'eager' %}
<div class="text--centered">
<h2 class="page__header">{{ title }}</h2>
What kind of idiots do you have working here? <a href="/">Hurry up and skip out on the room service bill!</a>
</div>
<hr class="large__spacing" />
{% render "partials/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %}
{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:links %}
</div>