forked from timber/starter-theme
-
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
78c80b1
commit ebdeb30
Showing
1 changed file
with
23 additions
and
1 deletion.
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,5 +1,27 @@ | ||
{% extends "base.twig" %} | ||
|
||
{% block content %} | ||
Sorry, we couldn't find what you're looking for. | ||
<div class="ts-bg-dk"> | ||
<div class="max-w-[600px] py-2xl md:py-3xl p-site mx-auto text-center"> | ||
|
||
{# Subhead #} | ||
<h2 class="ts-text-high-contrast utility-md uppercase">{{ __( '404', 'ts' ) }}</h2> | ||
|
||
{# Heading #} | ||
<h1 class="ts-text-high-contrast h1 mt-sm">{{ __( 'Page Not Found', 'ts' ) }}</h1> | ||
|
||
{# Description #} | ||
<p class="ts-text-high-contrast body-base mt-sm">{{ __( "Just as we fight for everyone to be heard, we strive to help you find the information you need. Unfortunately, this page no longer exists. But don't let this stop you from exploring the work we do.", 'ts' ) }}</p> | ||
|
||
{# Buttons #} | ||
<div class="flex flex-col gap-base justify-center mt-md sm:flex-row"> | ||
<div class="text-center"> | ||
{% include "atoms/btns/btn-two-up.twig" with { | ||
primary_btn: {title:__( 'Return Home', 'ts' ), url:"/" }, | ||
secondary_btn: {title:__( 'Donate', 'ts' ), url:"/donate" }, | ||
} %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |