Initial Drupal 11 with DDEV setup
This commit is contained in:
		@ -0,0 +1,45 @@
 | 
			
		||||
{#
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * Claro's theme implementation to display the maintenance page as frontpage.
 | 
			
		||||
 *
 | 
			
		||||
 * This is template used for rendering the page displayed for users when the
 | 
			
		||||
 * site is under maintenance.
 | 
			
		||||
 *
 | 
			
		||||
 * All available variables are mirrored in page.html.twig.
 | 
			
		||||
 * Some may be blank but they are provided for consistency.
 | 
			
		||||
 *
 | 
			
		||||
 * @see template_preprocess_maintenance_page()
 | 
			
		||||
 */
 | 
			
		||||
#}
 | 
			
		||||
<div class="layout-container">
 | 
			
		||||
 | 
			
		||||
  <header role="banner">
 | 
			
		||||
    {% if site_name %}
 | 
			
		||||
      <h2 class="site-name site-name--subtle">{{ site_name }}</h2>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
  </header>
 | 
			
		||||
 | 
			
		||||
  {% if page.sidebar_first %}
 | 
			
		||||
    <aside class="layout-sidebar-first" role="complementary">
 | 
			
		||||
      {{ page.sidebar_first }}
 | 
			
		||||
    </aside>{# /.layout-sidebar-first #}
 | 
			
		||||
  {% endif %}
 | 
			
		||||
 | 
			
		||||
  <main role="main" class="main-content main-content--attached">
 | 
			
		||||
    {% if title %}
 | 
			
		||||
      <h1 class="title title--broad">{{ title }}</h1>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
    {{ page.highlighted }}
 | 
			
		||||
    <div class="content content--subtle">
 | 
			
		||||
      {{ page.content }}
 | 
			
		||||
    </div>
 | 
			
		||||
  </main>
 | 
			
		||||
 | 
			
		||||
  {% if page.page_bottom %}
 | 
			
		||||
    <footer role="contentinfo">
 | 
			
		||||
      {{ page.page_bottom }}
 | 
			
		||||
    </footer>
 | 
			
		||||
  {% endif %}
 | 
			
		||||
 | 
			
		||||
</div>{# /.layout-container #}
 | 
			
		||||
		Reference in New Issue
	
	Block a user