first commit
This commit is contained in:
31
layouts/404.html
Normal file
31
layouts/404.html
Normal file
@@ -0,0 +1,31 @@
|
||||
{{ define "main"}}
|
||||
<section class="error">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<!--start error-content -->
|
||||
<div class="error-content">
|
||||
<h2>404 Error</h2>
|
||||
<p>Oops! Page Not Found</p>
|
||||
<form action="#">
|
||||
<div class="input-group">
|
||||
<input type="text" class="form-control" placeholder="Search again...">
|
||||
<div class="input-search">
|
||||
<a href="#"> <i class="ti-search"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="error-content-link">
|
||||
<a href="{{.Site.BaseURL}}">
|
||||
<i class="ti-arrow-left"></i>
|
||||
back to home
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<!--end error-content -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{end}}
|
||||
11
layouts/_default/baseof.html
Normal file
11
layouts/_default/baseof.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
||||
0
layouts/_default/list.html
Normal file
0
layouts/_default/list.html
Normal file
0
layouts/_default/single.html
Normal file
0
layouts/_default/single.html
Normal file
43
layouts/about/list.html
Normal file
43
layouts/about/list.html
Normal file
@@ -0,0 +1,43 @@
|
||||
{{ define "main"}}
|
||||
<section class="about">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="page-header">
|
||||
<h2>{{ .Title}}</h2>
|
||||
<p>{{ .Params.subTitle }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="story">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-6">
|
||||
<div class="story-content">
|
||||
{{.Content}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
{{ with .Params.slideImage }}
|
||||
<div class="story-slider">
|
||||
{{range . }}
|
||||
<div class="slider-item">
|
||||
<img src="{{ .image | absURL }}" alt="images">
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ partial "gallery.html" . }}
|
||||
{{ partial "testimonial.html" . }}
|
||||
{{ partial "client.html" . }}
|
||||
{{ partial "investor.html" . }}
|
||||
{{ partial "contactAddress.html" . }}
|
||||
|
||||
|
||||
{{end}}
|
||||
41
layouts/blog/list.html
Normal file
41
layouts/blog/list.html
Normal file
@@ -0,0 +1,41 @@
|
||||
{{define "main"}}
|
||||
<section class="page-title">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>{{.Title}}</h1>
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="{{ .Site.BaseURL }}">Accueil</a></li>
|
||||
<li class="breadcrumb-item active">{{.Title}}</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="blog">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
{{ range .Paginator.Pages }}
|
||||
<div class="col-lg-4">
|
||||
<article class="blog-post">
|
||||
<img src="{{ .Params.featureImage | absURL }}" alt="blog-images">
|
||||
<div class="blog-content">
|
||||
<h3><a href="{{ .Permalink }}">{{ .Title}}</a></h3>
|
||||
<p> {{truncate 100 .Summary}} </p>
|
||||
<a class="more" href="{{ .Permalink }}">Voir la suite...<span>⟶</span></a>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{{end}}
|
||||
<div class="col-12">
|
||||
<div class="blog-pagination">
|
||||
{{partial "pagination.html" . }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
26
layouts/blog/single.html
Normal file
26
layouts/blog/single.html
Normal file
@@ -0,0 +1,26 @@
|
||||
{{define "main"}}
|
||||
<article class="post">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-10 mx-auto">
|
||||
<div class="post-title">
|
||||
<h2>{{.Title}}</h2>
|
||||
</div>
|
||||
<div class="post-meta">
|
||||
<p><span>{{ .PublishDate.Format "2 January 2006" }}</span> in
|
||||
{{ range (.GetTerms "tags") }}
|
||||
<a class="tags" href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
||||
{{ end }}
|
||||
</p>
|
||||
</div>
|
||||
<div class="post-image">
|
||||
<img src="{{ .Params.featureImage | absURL}}" alt="feature-image">
|
||||
</div>
|
||||
<div class="post-body">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
{{end}}
|
||||
48
layouts/contact/list.html
Normal file
48
layouts/contact/list.html
Normal file
@@ -0,0 +1,48 @@
|
||||
{{define "main"}}
|
||||
<section class="contact-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-10 mx-auto col-md-12">
|
||||
<div class="page-header">
|
||||
<h2> {{ .Title }}</h2>
|
||||
<p>{{.Params.subTitle}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-8 mx-auto">
|
||||
<div class="contact-form">
|
||||
<h2>Contact Form</h2>
|
||||
<form id="contact-form" class="row" action="{{ .Site.Params.fabFormURL }}" method="POST">
|
||||
<div class="col-md-6">
|
||||
<input type="text" class="form-control" id="exampleFormControlInput1" name="Name" placeholder="Votre Nom">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<input type="email" class="form-control" id="validationCustom02" required="" name="email" placeholder="Votre Email">
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<textarea class="form-control" id="exampleFormControlTextarea1" rows="8" name="message"
|
||||
placeholder="Composez votre message ici…"></textarea>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" id="gridCheck" name="checkbox" required>
|
||||
<label class="form-check-label" for="gridCheck">
|
||||
Dans l'éventualité d'une réponse, je consent à la collecte et au traitement de ces données.
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-12">
|
||||
<button type="submit" class="btn btn-primary" id="contact-form-button" formtarget="_blank">Envoyer</button>
|
||||
</div>
|
||||
<p id="contact-form-status"></p>
|
||||
</form>
|
||||
<p class="contact-form-generator mt-3">
|
||||
<strong>** </strong> <a href="https://fabform.io/" target="_blank">Static website forms</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
10
layouts/index.html
Normal file
10
layouts/index.html
Normal file
@@ -0,0 +1,10 @@
|
||||
{{define "main"}}
|
||||
{{ partial "hero.html" . }}
|
||||
{{ partial "osteopathie.html" . }}
|
||||
{{ partial "blogSection.html" . }}
|
||||
{{ partial "qui.html" . }}
|
||||
{{ partial "liens.html" . }}
|
||||
{{ partial "horaires.html" . }}
|
||||
{{ partial "gallery.html" . }}
|
||||
{{ partial "contactAddress.html" . }}
|
||||
{{end}}
|
||||
35
layouts/partials/blogSection.html
Normal file
35
layouts/partials/blogSection.html
Normal file
@@ -0,0 +1,35 @@
|
||||
{{with .Site.Data.blogSection}}
|
||||
{{if .enable}}
|
||||
<section class="blog" id="blog">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="section-title">
|
||||
<h2>{{.title}}</h2>
|
||||
<p>
|
||||
{{.subtitle}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
{{ range first 3 (where $.Site.RegularPages "Type" "blog") }}
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<article class="blog-post">
|
||||
<img src="{{ .Params.featureImage | absURL }}" alt="blog-images">
|
||||
<div class="blog-content">
|
||||
<h3><a href="{{ .Permalink }}">{{.Title}}</a></h3>
|
||||
<p>{{ truncate 75 .Summary }}</p>
|
||||
<a class="more" href="{{ .Permalink }}">Voir plus...<span>⟶</span></a>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{{end}}
|
||||
<div class="col-12 text-center">
|
||||
<a href="{{.buttonTarget | absURL}}" class="btn btn-primary">En savoir encore plus...</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
24
layouts/partials/client.html
Normal file
24
layouts/partials/client.html
Normal file
@@ -0,0 +1,24 @@
|
||||
{{ with .Site.Data.clients}}
|
||||
{{ if .enable}}
|
||||
<section class="clients">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h2>{{ .title}}</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="clients-slider">
|
||||
{{ range .clients}}
|
||||
<div class="clients-slider-item">
|
||||
<img src="{{ .image | absURL}}" alt="{{ .image}}">
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
28
layouts/partials/contactAddress.html
Normal file
28
layouts/partials/contactAddress.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{{ $address := .Site.Params.address}}
|
||||
<section class="contact" id="contact">
|
||||
<div class="container-fluid">
|
||||
<div class="row no-gutters">
|
||||
<div class="col-lg-6">
|
||||
<iframe width="100%" height="100%" frameBorder="0" src="https://umap.openstreetmap.fr/fr/map/loic-gentil_1123879"></iframe>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="contact-aria">
|
||||
<h3>
|
||||
{{ $address.name | safeHTML }}
|
||||
</h3>
|
||||
<h3>
|
||||
{{ $address.address | safeHTML }}
|
||||
</h3>
|
||||
<ul>
|
||||
{{ with $address.email }}<li><i class="ti-email"></i> <a href="mailto:{{ . }}">{{ . }}</a></li>{{ end }}
|
||||
{{ with $address.phone }}<li><i class="ti-mobile"></i> <a href="tel:{{ . }}">{{ . }}</a></li>{{ end }}
|
||||
</ul>
|
||||
<p>
|
||||
{{ $address.openingDesc }}
|
||||
</p>
|
||||
<p>{{ $address.openingHours }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
19
layouts/partials/cta.html
Normal file
19
layouts/partials/cta.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{{with .Site.Data.cta}}
|
||||
{{ if .enable }}
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="cta-content">
|
||||
<h2>{{.title}}</h2>
|
||||
<a href="{{.buttonTarget | absURL }}" class="btn btn-primary mb-3">
|
||||
Schedule your day
|
||||
</a>
|
||||
<p style="font-size: 12px;">or check out <a class="scroll-to" href="{{ $.Site.BaseURL }}{{ .priceLink }}">pricing plans</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
18
layouts/partials/feedback.html
Normal file
18
layouts/partials/feedback.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{{with .Site.Data.feedback}}
|
||||
{{if .enable}}
|
||||
<section class="testimonial" style="background-image: url( {{ .backgroundImage }} );">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="testimonial-content">
|
||||
<h3>{{ .title}}</h3>
|
||||
<blockquote>
|
||||
{{ .feedback}}
|
||||
<cite>{{ .feedbackAuthor }}</cite>
|
||||
</blockquote>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
73
layouts/partials/footer.html
Normal file
73
layouts/partials/footer.html
Normal file
@@ -0,0 +1,73 @@
|
||||
<section class="footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-12">
|
||||
<div class="footer-logo">
|
||||
<img class="img-fluid" src="{{ .Site.Params.footerlogo | absURL}}" alt="logo">
|
||||
</div>
|
||||
<p class="footer-description">
|
||||
{{ .Site.Params.footerDescription}}
|
||||
</p>
|
||||
<div class="footer-text-block">
|
||||
<p>
|
||||
{{ .Site.Params.address.address | safeHTML}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ $socialIcon := .Site.Params.social}}
|
||||
<div class="col-lg-6 col-md-12 align-self-end">
|
||||
<div class="footer-icon">
|
||||
<ul>
|
||||
{{ range $socialIcon }}
|
||||
<li>
|
||||
<a target="_blank" href="{{ .url }}">
|
||||
<i
|
||||
class="{{ .icon }}">
|
||||
</i>
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.address.email }}
|
||||
<li><a target="_blank" href="mailto:{{ . }}"><i class="ti-email"></i></a></li>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.address.phone }}
|
||||
<li><a target="_blank" href="tel:{{ . }}"><i class="ti-mobile"></i></a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-copyright-text">
|
||||
<p> {{ replace .Site.Params.copyright "{year}" now.Year | safeHTML }} </p>
|
||||
<ul>
|
||||
{{ $sitemap := .Site.Menus.sitemap }}
|
||||
{{ range $sitemap }}
|
||||
<li>
|
||||
<a href="{{ .URL | absURL }}">{{ .Name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
{{ "<!-- Non Critical CSS -->" | safeHTML }}
|
||||
{{$style := resources.Get "scss/non-critical.scss" | resources.ToCSS | resources.Minify }}
|
||||
<link href="{{ $style.Permalink }}" rel="stylesheet" />
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key={{ .Site.Params.Map.APIkey }}&libraries=geometry">
|
||||
</script>
|
||||
{{ "<!-- VENDOR JS -->" | safeHTML }}
|
||||
<script src="{{"vendor/jQuery/jquery.min.js" | absURL }}"></script>
|
||||
<script src="{{"vendor/bootstrap/bootstrap.min.js" | absURL }}"></script>
|
||||
<script src="{{"vendor/slick/slick.min.js" | absURL}}"></script>
|
||||
<script src="{{"vendor/aos/aos.js" | absURL}}"></script>
|
||||
<script src="{{"vendor/match-height/match-height.js" | absURL}}"></script>
|
||||
<script src="{{"vendor/magnific-popup/magnific-popup.min.js" | absURL}}"></script>
|
||||
<script src="{{"vendor/g-map/gmap.js" | absURL}}"></script>
|
||||
<!-- {{ $formhandler := resources.Get "js/formhandler.js" | minify}}
|
||||
<script src="{{ $formhandler.Permalink}}"></script> -->
|
||||
{{ $script := resources.Get "js/script.js" | minify}}
|
||||
<script src="{{ $script.Permalink}}"></script>
|
||||
{{ $calendar := resources.Get "js/calendar.js" | minify}}
|
||||
<script src="{{ $calendar.Permalink}}"></script>
|
||||
40
layouts/partials/gallery.html
Normal file
40
layouts/partials/gallery.html
Normal file
@@ -0,0 +1,40 @@
|
||||
{{ with .Site.Data.gallery }}
|
||||
{{ if .enable }}
|
||||
<section class="gallery" id="cabinet">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="section-title">
|
||||
<h2>{{ .title | safeHTML }}</h2>
|
||||
<p>
|
||||
{{.subtitle}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
{{ range .galleryImage }}
|
||||
<div class="col-md-6">
|
||||
<div class="gallery-item">
|
||||
<a href="{{ .image | absURL }}" data-source="{{ .image | absURL }}"
|
||||
title="{{ .description }}">
|
||||
<img src="{{ .image | absURL }}" alt="gallery-images">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ if .heroVideo }}
|
||||
<div class="hero-video-player">
|
||||
<div class="hero-video-player-icon">
|
||||
<a class="popup-vimeo" href="{{ .heroVideo }}">
|
||||
<i class="ti-control-play"></i>
|
||||
</a>
|
||||
</div>
|
||||
{{ .herosVideoDesc | safeHTML }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
43
layouts/partials/head.html
Normal file
43
layouts/partials/head.html
Normal file
@@ -0,0 +1,43 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>{{.Title}}</title>
|
||||
|
||||
{{ "<!--Meta For No Index-->" | safeHTML }}
|
||||
<meta name="robots" content="noindex, Nofollow, Noimageindex">
|
||||
|
||||
{{ "<!--mobile responsive meta-->" | safeHTML }}
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1, maximum-scale=1"
|
||||
/>
|
||||
{{hugo.Generator}}
|
||||
{{ "<!-- Critical CSS -->" | safeHTML }}
|
||||
{{$style := resources.Get "scss/critical.scss" | resources.ToCSS | resources.Minify }}
|
||||
<link href="{{ $style.Permalink }}" rel="stylesheet" />
|
||||
|
||||
{{ with .Site.Params.theme_overrides }}
|
||||
{{ $theme_overrides := resources.Get . | minify | fingerprint "sha512" }}
|
||||
<link rel="stylesheet" href="{{ $theme_overrides.RelPermalink }}" integrity="{{ $theme_overrides.Data.Integrity }}">
|
||||
{{ end }}
|
||||
|
||||
{{"<!-- Favicon -->" | safeHTML}}
|
||||
<link rel="shortcut icon" href="{{"images/favicon.ico" | absURL}}" type="image/x-icon" />
|
||||
<link rel="icon" href="{{"images/favicon.png" | absURL}}" type="image/x-icon" />
|
||||
|
||||
{{ with .Site.Params.googleAnalytics }}
|
||||
{{ "<!-- Global Site Tag (gtag.js) - Google Analytics -->" | safeHTML }}
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', '{{ . }}');
|
||||
|
||||
</script>
|
||||
{{ end }}
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
32
layouts/partials/header.html
Normal file
32
layouts/partials/header.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<!-- Mark up for Site Navigation Section-->
|
||||
<header class="header">
|
||||
<nav class="main-nav navbar navbar-expand-lg {{ if not $.IsHome }}main-nav-colored{{ end }}">
|
||||
<div class="container-fluid">
|
||||
<a href="{{.Site.BaseURL}}" class="navbar-brand">
|
||||
<img src="{{.Site.Params.logo | absURL}}" alt="site-logo" />
|
||||
</a>
|
||||
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#mainNav" aria-expanded="false">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
|
||||
<div
|
||||
class="collapse navbar-collapse nav-list"
|
||||
id="mainNav"
|
||||
>
|
||||
<ul class="navbar-nav ml-auto">
|
||||
{{ $currentPage := . }}
|
||||
{{ $menu := .Site.Menus.main}}
|
||||
{{range $index, $element := $menu}}
|
||||
<li class="nav-item {{ if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }} active{{ end }}">
|
||||
<a class="nav-link scroll-to" href="{{ .URL | relURL }}">{{.Name}}</a>
|
||||
</li>
|
||||
{{end}}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- Doctolib -->
|
||||
<a href="https://www.doctolib.fr/osteopathe/rennes/loic-gentil?utm_medium=referral&utm_campaign=website-button&utm_content=option-5&utm_term=loic-gentil&utm_source=loic-gentil-website-button" style="display:block;text-align:center;background-color:#0596DE;color:#ffffff;font-size:14px;overflow:hidden;width:257px;height:40px;border-bottom-right-radius:none;border-bottom-left-radius:none;position:fixed;bottom:0;right:5px;z-index:1000;border-top-left-radius:4px;border-top-right-radius:4px;line-height:40px" target="_blank" data-reactroot=""><span style="font-size:13px">Prendre rendez-vous en ligne</span><img style="height:15px;margin-bottom:3px;vertical-align:middle;width:auto" src="https://pro.doctolib.fr/external_button/doctolib-white-transparent.png" alt="Doctolib"/></a>
|
||||
</header>
|
||||
28
layouts/partials/hero.html
Normal file
28
layouts/partials/hero.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{{with .Site.Data.hero}}
|
||||
{{if .enable}}
|
||||
<section class="hero" style="background-image: url( {{ .heroBGimg }} );">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-lg-12">
|
||||
<div class="hero-content">
|
||||
<h1>{{.title | safeHTML}}</h1>
|
||||
{{ range .subtitle }}
|
||||
<h3 class="animate__animated animate__pulse animate__infinite animate__slower">{{.word | safeHTML }}</h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ if .heroVideo }}
|
||||
<div class="hero-video-player">
|
||||
<div class="hero-video-player-icon">
|
||||
<a class="popup-vimeo" href="{{ .heroVideo }}">
|
||||
<i class="ti-control-play"></i>
|
||||
</a>
|
||||
</div>
|
||||
{{ .herosVideoDesc | safeHTML }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
64
layouts/partials/horaires.html
Normal file
64
layouts/partials/horaires.html
Normal file
@@ -0,0 +1,64 @@
|
||||
{{with .Site.Data.horaires}}
|
||||
{{if .enable}}
|
||||
<section class="pricing" style="background-image: url( {{ .backgroundImage }} );" id="horaires">
|
||||
<div class="container">
|
||||
<div class="section-title">
|
||||
<h3>{{ .title }}</h3>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-7">
|
||||
<div class="testimonial-content">
|
||||
<!-- <p>Aujourd'hui nous sommes le {{ time.Now | time.Format "2 Jan 2006" }}.</p> -->
|
||||
<div class="calendar-container">
|
||||
<header class="calendar-header">
|
||||
<p class="calendar-current-date"></p>
|
||||
<div class="calendar-navigation">
|
||||
<span id="calendar-prev" class="material-symbols-rounded">chevron_left</span>
|
||||
<span id="calendar-next" class="material-symbols-rounded">chevron_right</span>
|
||||
</div>
|
||||
</header>
|
||||
<div class="calendar-body">
|
||||
<ul class="calendar-weekdays">
|
||||
<li>Lun</li>
|
||||
<li>Mar</li>
|
||||
<li>Mer</li>
|
||||
<li>Jeu</li>
|
||||
<li>Ven</li>
|
||||
<li>Sam</li>
|
||||
<li>Dim</li>
|
||||
</ul>
|
||||
<ul class="calendar-dates"></ul>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <blockquote> -->
|
||||
<cite>{{ .feedback | safeHTML }}</cite>
|
||||
<!-- <cite>{{ .feedbackAuthor | safeHTML }}</cite>
|
||||
</blockquote> -->
|
||||
</div>
|
||||
</div>
|
||||
{{ range .itemPrices}}
|
||||
<div class="col-lg-5">
|
||||
<div class="pricing-wraper">
|
||||
<div class="pricing-item">
|
||||
{{if .badge}}
|
||||
<span class="pricing-item-badge">Popular</span>
|
||||
{{end}}
|
||||
<span class="price">
|
||||
{{.price}}<sup>€</sup>
|
||||
</span>
|
||||
<h3>{{.packcage}}</h3>
|
||||
<p>
|
||||
{{.description}}
|
||||
</p>
|
||||
</div>
|
||||
<a href="{{ .buttonTarget }}" class="btn btn-primary" target="_blank">Prendre rendez-vous en ligne</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
30
layouts/partials/investor.html
Normal file
30
layouts/partials/investor.html
Normal file
@@ -0,0 +1,30 @@
|
||||
{{ with .Site.Data.investor}}
|
||||
{{ if .enable}}
|
||||
<section class="team">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="section-title">
|
||||
<h2>{{ .title }}</h2>
|
||||
<p>{{ .subtitle }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
{{ range .investor}}
|
||||
<div class="col-lg-3">
|
||||
<div class="member-informashion">
|
||||
<div class="member-thume">
|
||||
<img src="{{ .image | absURL }}" alt="image">
|
||||
</div>
|
||||
<h3>{{.name}}</h3>
|
||||
<p>{{.post}}</p>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
49
layouts/partials/liens.html
Normal file
49
layouts/partials/liens.html
Normal file
@@ -0,0 +1,49 @@
|
||||
{{ with .Site.Data.liens}}
|
||||
{{ if .enable}}
|
||||
<section class="lien" id="liens">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="section-title">
|
||||
<h2>{{ .title }}</h2>
|
||||
<p>{{ .subtitle }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<h2>Livres</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
{{ range .livres}}
|
||||
<div class="col-lg-3">
|
||||
<div class="lien-infos">
|
||||
<div class="lien-thumb">
|
||||
<a href="{{ .link }}" title="{{ .post }}" target="_blank"><img src="{{ .image | absURL }}" alt="image"></a>
|
||||
</div>
|
||||
<h3>{{.name}}</h3>
|
||||
<h4><a href="{{ .link }}" title="{{ .post }}">{{.post}}</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
<div class="row">
|
||||
<h2>Sites</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
{{ range .sites}}
|
||||
<div class="col-lg-3">
|
||||
<div class="lien-infos">
|
||||
<div class="lien-thumb">
|
||||
<a href="{{ .link }}" title="{{ .post }}" target="_blank"><img src="{{ .image | absURL }}" alt="image"></a>
|
||||
</div>
|
||||
<h3>{{.name}}</h3>
|
||||
<h4><a href="{{ .link }}" title="{{ .post }}">{{.post}}</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
29
layouts/partials/osteopathie.html
Normal file
29
layouts/partials/osteopathie.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{{ with .Site.Data.osteopathie}}
|
||||
{{ if .enable}}
|
||||
<section class="service" id="osteopathie">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="section-title">
|
||||
<h2> {{.title }} </h2>
|
||||
<p>
|
||||
{{.subtitle}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ range .services}}
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="service-item">
|
||||
<i class="{{ .icon }}" aria-hidden="true"></i>
|
||||
<h3>{{ .name }}</h3>
|
||||
<p>
|
||||
{{.description }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
27
layouts/partials/pagination.html
Normal file
27
layouts/partials/pagination.html
Normal file
@@ -0,0 +1,27 @@
|
||||
{{ $pag := $.Paginator }}
|
||||
{{ if gt $pag.TotalPages 1 }}
|
||||
<nav>
|
||||
<ul class="pagination ">
|
||||
{{ range $pag.Pagers }}
|
||||
{{ if eq . $pag }}
|
||||
<li class="page-item active">
|
||||
<a class="page-link" href="{{ .URL }}">{{ .PageNumber }}</a>
|
||||
</li>
|
||||
{{ else }}
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ .URL }}">{{ .PageNumber }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ if $pag.HasNext }}
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ $pag.Next.URL }}" rel="next">
|
||||
→
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
{{ end }}
|
||||
37
layouts/partials/pricing.html
Normal file
37
layouts/partials/pricing.html
Normal file
@@ -0,0 +1,37 @@
|
||||
{{ with .Site.Data.pricing}}
|
||||
{{ if .enable}}
|
||||
<section class="pricing" id="pricing">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-12">
|
||||
<div class="section-title">
|
||||
<h2>{{.title}}</h2>
|
||||
<p>{{.subtitle}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ range .itemPrices}}
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="pricing-wraper">
|
||||
<div class="pricing-item">
|
||||
{{if .badge}}
|
||||
<span class="pricing-item-badge">Popular</span>
|
||||
{{end}}
|
||||
<span class="price">
|
||||
{{.price}}<sup>€</sup>
|
||||
</span>
|
||||
<h3>{{.packcage}}</h3>
|
||||
<p>
|
||||
{{.description}}
|
||||
</p>
|
||||
</div>
|
||||
<a href="{{ .buttonTarget | absURL}}" class="btn btn-primary">Join Us</a>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
34
layouts/partials/qui.html
Normal file
34
layouts/partials/qui.html
Normal file
@@ -0,0 +1,34 @@
|
||||
{{with .Site.Data.qui}}
|
||||
{{if .enable}}
|
||||
<section class="faq" id="qui">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-12">
|
||||
<div class="faq-content text-block">
|
||||
<h2> {{.title}} </h2>
|
||||
</div>
|
||||
<div class="member-informashion">
|
||||
<div class="member-thume">
|
||||
<img src="images/team/loic-gentil.png" alt="image">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 col-md-12">
|
||||
<div class="row">
|
||||
{{ range .faq}}
|
||||
<div class="col-lg-6">
|
||||
<div class="faq-content">
|
||||
<h3>{{.question}}</h3>
|
||||
<p>
|
||||
{{.answer}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
22
layouts/partials/testimonial.html
Normal file
22
layouts/partials/testimonial.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{{ with .Site.Data.testimonial}}
|
||||
{{ if .enable}}
|
||||
<section class="quotes">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="quotes-slider">
|
||||
{{range .testimonial}}
|
||||
|
||||
<div class="quotes-slider-item">
|
||||
<h2>{{ .testimonialDetails }}</h2>
|
||||
<img src="{{ .testimonialImage }}" alt="{{ .testimonialDetails }}">
|
||||
<span>-{{ .author }}</span>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
{{end}}
|
||||
23
layouts/privacy/privacy.html
Normal file
23
layouts/privacy/privacy.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{{define "main"}}
|
||||
<section class="privacy-policy">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="page-header">
|
||||
<h1>{{ .Title}}</h1>
|
||||
<p>{{.Params.subTitle}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="privacy-policy-content">
|
||||
<div class="privacy-policy-item">
|
||||
{{.Content}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
41
layouts/tags/taxonomy.html
Normal file
41
layouts/tags/taxonomy.html
Normal file
@@ -0,0 +1,41 @@
|
||||
{{define "main"}}
|
||||
<section class="page-title">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1>{{.Title}}</h1>
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="{{ .Site.BaseURL }}">Home</a></li>
|
||||
<li class="breadcrumb-item active">{{.Title}}</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="blog">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
{{ range .Paginator.Pages }}
|
||||
<div class="col-lg-4">
|
||||
<article class="blog-post">
|
||||
<img src="{{ .Params.featureImage | absURL }}" alt="blog-images">
|
||||
<div class="blog-content">
|
||||
<h3><a href="{{ .Permalink }}">{{ .Title}}</a></h3>
|
||||
<p> {{truncate 100 .Summary}} </p>
|
||||
<a class="more" href="{{ .Permalink }}">Plus...<span>⟶</span></a>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{{end}}
|
||||
<div class="col-12">
|
||||
<div class="blog-pagination">
|
||||
{{partial "pagination.html" . }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
23
layouts/terms/terms.html
Normal file
23
layouts/terms/terms.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{{define "main"}}
|
||||
<section class="privacy-policy">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="page-header">
|
||||
<h1>{{ .Title}}</h1>
|
||||
<p>{{.Params.subTitle}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="privacy-policy-content">
|
||||
<div class="privacy-policy-item">
|
||||
{{.Content}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{end}}
|
||||
Reference in New Issue
Block a user