Compare commits

...

3 commits

5 changed files with 55 additions and 10 deletions

BIN
assets/images/cover_big.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

View file

@ -68,12 +68,16 @@ $header-height: 6.5rem;
.site-header__content { .site-header__content {
display: block; display: block;
height: auto; height: auto;
padding-top: 1rem; padding: 0 !important;
}
.site-header__brand {
padding-top: .5rem;
} }
.site-header__title { .site-header__title {
padding-right: 1rem; padding-right: 1rem;
} }
.site-header__nav { .site-header__nav {
border: 1px solid white;
padding: 1rem 0; padding: 1rem 0;
line-height: 2rem; line-height: 2rem;
display: flex; display: flex;

View file

@ -2,11 +2,27 @@
width: 100%; width: 100%;
} }
.landing { .landing-border {
border: 2px solid rgba(0, 0, 0, 0.4);
border-radius: 4px;
}
.landing-two-sections {
display: grid;
grid-template-columns: 1fr 1fr;
@extend .landing-border;
}
.landing-cover {
img {
object-fit: cover;
object-position: center;
width: 100%;
height: 100%;
}
} }
.landing-brand { .landing-brand {
border: 1px solid rgba(0, 0, 0, 0.4);
padding: 1rem; padding: 1rem;
text-align: center; text-align: center;
display: flex; display: flex;
@ -27,9 +43,6 @@
} }
.brand__role2 {
}
.brand__logo { .brand__logo {
svg { svg {
max-width: 25rem; max-width: 25rem;
@ -37,3 +50,21 @@
} }
} }
@media (max-width: $md-breakpoint) {
.landing-two-sections {
display: block;
}
.landing-cover {
img {
height: 13rem;
}
}
.landing-brand {
.brand__logo svg {
max-width: 15rem;
}
.brand__name {
font-size: 2.5rem;
}
}
}

View file

@ -6,6 +6,7 @@ website: "https://www.bicycleure.fr"
facebook: facebook:
name: "Bicycl'Eure" name: "Bicycl'Eure"
url: https://www.facebook.com/profile.php?id=100064205644693 url: https://www.facebook.com/profile.php?id=100064205644693
# https://www.societe.com/etablissement/bicycl-eure-53757778500018.html
siret: "537577 785 00018" siret: "537577 785 00018"
# https://www.openstreetmap.org/node/9526690022 # https://www.openstreetmap.org/node/9526690022
# 49.1755136, 1.3343608 # 49.1755136, 1.3343608

View file

@ -1,7 +1,15 @@
{{ define "main" }} {{ define "main" }}
<main class="page-container"> <main class="page-container">
<div class="landing"> <div class="landing">
<div class="landing-one"> <div class="landing-two-sections">
<div class="landing-cover">
{{ $featuredImage := (resources.Get (printf "%s" ("images/cover_big.jpg" | safeURL))) }}
{{ $featuredImage := $featuredImage.Fill "800x500 Center" }}
<img
alt="Laurent en plein travail de réparation sur un vélo"
src="{{ $featuredImage.RelPermalink }}"
/>
</div>
<div class="landing-brand"> <div class="landing-brand">
<div class="brand__logo landing-half-wheel-logo"> <div class="brand__logo landing-half-wheel-logo">
{{ partial "svg" "half_wheel_logo" }} {{ partial "svg" "half_wheel_logo" }}
@ -12,10 +20,11 @@
</div> </div>
<div class="brand__role2">Réparation &amp; Entretien - Toutes marques</div> <div class="brand__role2">Réparation &amp; Entretien - Toutes marques</div>
</div> </div>
<div class="landing-description">
{{ .Content }}
</div>
</div> </div>
<div class="landing-description">
{{ .Content }}
</div>
</div>
</div> </div>
</main> </main>
{{ end }} {{ end }}