Add 404 page
This commit is contained in:
parent
aa54a5882a
commit
22783aac88
|
@ -25,7 +25,9 @@
|
||||||
data-stacked="false"
|
data-stacked="false"
|
||||||
class="seva-fields formkit-fields"
|
class="seva-fields formkit-fields"
|
||||||
>
|
>
|
||||||
<!-- {intro && <p class="mb-8 text-center">{intro}</p>} -->
|
{% if intro %}
|
||||||
|
<p class="mb-8 text-center">{{ intro }}</p>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div class="formkit-field">
|
<div class="formkit-field">
|
||||||
<input
|
<input
|
||||||
|
|
22
source/_pages/404.md
Normal file
22
source/_pages/404.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
title: Page not found
|
||||||
|
---
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
Perhaps you were looking for one of these pages:
|
||||||
|
|
||||||
|
- [Products and services](/pricing)
|
||||||
|
- [Public speaking and workshops](/talks)
|
||||||
|
- [My daily email list](/daily)
|
||||||
|
- [The Beyond Blocks podcast](/podcast)
|
||||||
|
|
||||||
|
If you were looking for something else, you can [search for it](/search).
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content_bottom %}
|
||||||
|
{% include 'daily-email-form.html.twig' with {
|
||||||
|
intro: 'Sign up and get daily emails about Drupal, PHP and software development.'
|
||||||
|
} %}
|
||||||
|
|
||||||
|
{% include 'about-me.html.twig' %}
|
||||||
|
{% endblock %}
|
Loading…
Reference in a new issue