Skip to content
Snippets Groups Projects
Select Git revision
  • 0f25f6a51f284e7cc6acc72df3afc3c039231115
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

emphasized-article-card.mustache

Blame
  • 404.html 542 B
    {% load static %}
    
    <html lang="cs">
    <head>
      <link rel="stylesheet" href="{% static 'styleguide234/assets/css/styles.css' %}">{# TODO some custom 404 in future #}
      <title>404</title>
    </head>
    <body>
    <div class="flex flex-col my-40 items-center">
      <h1 class="head-alt-lg mb-8">
        404
      </h1>
      <img
        src="{% static 'shared/img/logo_black.svg' %}"
        alt="Pirátské logo"
        class="mb-8"
      >
      <h1 class="head-alt-md mb-8">
        Narazili jsme na mělčinu...
      </h1>
      <a href="/">
        Zpět do přístavu
      </a>
    </div>
    </body>
    </html>