Remove section classes

This commit is contained in:
TheThomaas 2024-02-10 21:14:30 +01:00
parent ad574ba89a
commit 698c59d4f4
4 changed files with 3 additions and 6 deletions

View file

@ -1,4 +1,4 @@
<section id="{{ subpage.data.title | slug }}" class="{{ subpage.data.classes }} wrapper-full hero-section"> <section id="{{ subpage.data.title | slug }}" class="wrapper-full hero-section">
<div> <div>
<h1 class="hero-title">{% if subpage.data.displayedTitle %}{{ subpage.data.displayedTitle }}{% else %}{{ subpage.data.title }}{% endif %}</h1> <h1 class="hero-title">{% if subpage.data.displayedTitle %}{{ subpage.data.displayedTitle }}{% else %}{{ subpage.data.title }}{% endif %}</h1>
<p>{{subpage.data.description}}</p> <p>{{subpage.data.description}}</p>

View file

@ -2,10 +2,9 @@
title: Download title: Download
showTitle: false showTitle: false
order: 4 order: 4
classes: 'download-section'
--- ---
<div class="flex-container justify-center"> <div class="flex-container justify-center download">
<p>You want to print this document ?</p> <p>You want to print this document ?</p>
<i>--></i> <i>--></i>
<button type="button" onclick="window.print()" class="btn btn-download icon--right icon-download">Download as PDF</button> <button type="button" onclick="window.print()" class="btn btn-download icon--right icon-download">Download as PDF</button>

View file

@ -1,7 +1,6 @@
--- ---
title: Experiences title: Experiences
order: 3 order: 3
classes: 'experiences-section'
--- ---
{% assign experiences = collections.experiences %} {% assign experiences = collections.experiences %}

View file

@ -1,8 +1,7 @@
--- ---
title: Projects title: Projects
order: 2 order: 2
classes: 'projects-section'
--- ---
{% assign projects = collections.projects %} {% assign projects = collections.projects %}
{% include 'partials/project.liquid' %} {% include 'partials/components/project-grid' %}