Skip to content
Snippets Groups Projects
Select Git revision
  • 4aa05570f6a0c7346093f54554978b47d5772907
  • master default protected
  • 2.0.0-alpha-11
  • 2.0.0-alpha-10
  • 2.0.0-alpha-9
  • 2.0.0-alpha-8
  • 2.0.0-alpha-7
  • 2.0.0-alpha-6
  • 2.0.0-alpha-5
  • 2.0.0-alpha-4
  • 2.0.0-alpha-3
  • 2.0.0-alpha-2
  • 2.0.0-alpha-1
  • 1.8.0
  • 1.7.0
  • 1.6.4
  • 1.6.3
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.5.5
  • 1.5.4
22 results

.editorconfig

Blame
  • Forked from TO / Weby / ui-styleguide
    Source project has a limited visibility.
    article_page.html 1.39 KiB
    {% extends "styleguide2/base.html" %}
    {% load wagtailcore_tags wagtailimages_tags %}
    
    {% block content %}
    
    {% block navbar %}
      {% include 'styleguide2/includes/organisms/layout/navbar.html' with selected_item=page.root_page.articles_page.get_menu_title %}
    {% endblock %}
    
    {% include 'styleguide2/includes/organisms/header/article_header.html' with title=page.title description=page.perex tags=page.tags.all first_nav_text=page.root_page.articles_page.title first_nav_link=page.root_page.articles_page.url second_nav_text=page.date show_scroll_progress=page.show_scroll_progress %}
    
    <main role="main" class="mb-10 xl:mb-32">
      <div class="container--wide flex flex-col">
        {% if page.shared_from %}
          <p>
            <em>
              Tento článek byl sdílen z jiného webu.
              Originál si můžete přečíst <a href="{{ page.get_original_url }}">zde</a>.
            </em>
          </p>
        {% endif %}
    
        {% if page.image %}
          {% image page.image max-500x500 as initial_image %}
        {% endif %}
    
        {% for block in page.content %}
          {% include_block block %}
        {% endfor %}
    
        <div class="flex justify-start">
          {% include 'styleguide2/includes/atoms/buttons/round_button.html' with url=page.root_page.articles_page.url text='Zpět na aktuality' show_arrow_on_hover=True %}
        </div>
      </div>
    </main>
    
    {% include 'styleguide2/includes/organisms/main_section/newsletter_section.html' %}
    
    {% endblock %}