diff --git a/templates/frontpage/blocks/claim.html b/templates/frontpage/blocks/claim.html index 1494950feb696eceafa5312461150cb844573018..d2028ef5e3a8571bd339079ccc4d5edce6b585d2 100644 --- a/templates/frontpage/blocks/claim.html +++ b/templates/frontpage/blocks/claim.html @@ -1,19 +1,22 @@ -<section class="hero is-fullheight-with-navbar has-teckids-orange-light-bg" id="frontpage-claim-block"> - <div class="hero-body"> - <div class="columns is-centered is-half"> - <h1 class="title is-1">{{ section.extra.headlines.claims }}</h1> - </div> - <div class="columns"> - {% for claim in section.extra.claims %} - <div class="column"> - <div class="box is-shadowless"> - <h1 class="title is-3">{{ claim.title }}</h1> - <p> - {{ claim.content }} - </p> - </div> - </div> - {% endfor %} +<section + class="hero is-fullheight-with-navbar has-teckids-orange-light-bg" + id="frontpage-claim-block" +> + <div class="hero-body"> + <div class="container"> + <div class="columns is-centered is-half mb-6"> + <h1 class="title is-1">{{ section.extra.headlines.claims }}</h1> + </div> + <div class="columns"> + {% for claim in section.extra.claims %} + <div class="column"> + <div class="box is-shadowless"> + <h1 class="title is-3">{{ claim.title }}</h1> + <p>{{ claim.content }}</p> + </div> </div> + {% endfor %} + </div> </div> + </div> </section> diff --git a/templates/menu/projects.html b/templates/menu/projects.html index fba1b3f30e8344a791798fbb6d830a76d4880784..8cd552b0534652583890445841f686013be7ae58 100644 --- a/templates/menu/projects.html +++ b/templates/menu/projects.html @@ -3,19 +3,21 @@ <div class="container is-fluid"> <div class="columns"> {% for project in projects.items %} - <section class="column menu-project-section" id="menu-project-section-{{ project.slug }}"> - {% set section = get_section(path = "projekte/" ~ project.slug ~ "/_index.md") %} + <section + class="column menu-project-section" + id="menu-project-section-{{ project.slug }}" + > + {% set section = get_section(path = "projekte/" ~ project.slug ~ + "/_index.md") %} <h1 class="title is-6 is-mega-menu-title">{{ section.title }}</h1> - <p class="is-mega-menu-subtitle">{{ section.description }}</p> + <strong class="is-mega-menu-subtitle">{{ section.description }}</strong> {% for page in project.pages %} <a class="navbar-item" href="{{ page.permalink }}"> - <div class="navbar-content"> - {{ page.title }} - </div> + <div class="navbar-content">{{ page.title }}</div> </a> {% endfor %} </section> {% endfor %} </div> -</div> \ No newline at end of file +</div>