Pre-launch: Added README.md

This commit is contained in:
2025-12-11 12:14:08 +01:00
parent f83a9ef416
commit c135fbaebf
5 changed files with 27 additions and 8 deletions

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
# Mantelzorgwoning.info Repository
Dit is de officiële repository voor **mantelzorgwoning.info**, een website die zich richt op het verzamelen, structureren en publiceren van publieke informatie rondom mantelzorgwoningen, lokale regelgeving en ruimtelijke voorwaarden in Nederland.
## Inhoud van deze repository
- **Content**
Alle tekstuele en informatieve content in deze repository valt onder de **Creative Commons CC-BY-SA** licentie.
Dit betekent dat hergebruik is toegestaan, mits er naamsvermelding plaatsvindt en afgeleide werken onder dezelfde licentie worden gedeeld.
- **Code**
Alle broncode in deze repository valt onder de **GNU GPLv3** licentie.
Herdistributie en aanpassingen zijn toegestaan, zolang afgeleide software eveneens wordt vrijgegeven onder GPLv3.
## Doel van het project
Het doel van mantelzorgwoning.info is om een transparante, betrouwbare en actuele bron te bieden voor inwoners, adviseurs en gemeenten die willen weten wat de lokale (of landelijke) regels zijn omtrent het plaatsen van een mantelzorgwoning of premantelzorgwoning op eigen terrein.

View File

@@ -2,7 +2,6 @@
"htmlElements": { "htmlElements": {
"tags": [ "tags": [
"a", "a",
"base",
"blockquote", "blockquote",
"body", "body",
"br", "br",
@@ -92,6 +91,7 @@
"d-block", "d-block",
"d-flex", "d-flex",
"d-lg-block", "d-lg-block",
"d-lg-flex",
"d-lg-none", "d-lg-none",
"d-md-block", "d-md-block",
"d-none", "d-none",
@@ -171,6 +171,7 @@
"modal-header", "modal-header",
"ms-0", "ms-0",
"ms-2", "ms-2",
"ms-lg-4",
"ms-sm-2", "ms-sm-2",
"mt-2", "mt-2",
"mt-sm-0", "mt-sm-0",
@@ -244,6 +245,7 @@
"stretched-link", "stretched-link",
"text-center", "text-center",
"text-dark", "text-dark",
"text-end",
"text-lg-end", "text-lg-end",
"text-lg-start", "text-lg-start",
"text-light", "text-light",

View File

@@ -1,7 +1,7 @@
// search-modal // search-modal
.search-modal-dialog { .search-modal-dialog {
margin-top: 150px; margin-top: 150px;
max-width: 600px; max-width: 700px;
@include desktop { @include desktop {
margin-top: 80px; margin-top: 80px;
} }
@@ -17,7 +17,7 @@
padding-bottom: 12px; padding-bottom: 12px;
} }
.modal-body { .modal-body {
max-height: calc(100vh - 350px); max-height: calc(100vh - 300px);
padding: 1rem; padding: 1rem;
overflow-y: auto; overflow-y: auto;
background-color: #f5f6f7; background-color: #f5f6f7;

View File

@@ -3,7 +3,7 @@
<section class="section pb-0"> <section class="section pb-0">
<div class="container"> <div class="container">
<div class="row justify-content-between align-items-center"> <div class="row justify-content-between align-items-center">
<div class="col-lg-7 text-center text-lg-start pe-lg-5"> <div class="col-lg-7 text-center text-lg-start pe-5">
{{ with .Params.banner }} {{ with .Params.banner }}
<h1 class="mb-4">{{ .title | markdownify }}</h1> <h1 class="mb-4">{{ .title | markdownify }}</h1>
<p class="mb-4">{{ .subtitle | markdownify }}</p> <p class="mb-4">{{ .subtitle | markdownify }}</p>

View File

@@ -64,14 +64,14 @@
</li> </li>
</ul> </ul>
<!-- for mobile <!-- for mobile -->
<div class="d-lg-none d-block"> <div class="d-lg-none d-block">
{{ range site.Params.nav_button }} {{ range site.Params.nav_button }}
<a href="{{ .link | absLangURL }}" <a href="{{ .link | absLangURL }}"
class="btn btn-sm {{if eq .style `outline`}}btn-outline-primary{{else}}btn-primary{{end}} ms-lg-4">{{ i18n .label }}</a> class="btn btn-sm {{if eq .style `outline`}}btn-outline-primary{{else}}btn-primary{{end}} ms-lg-4">{{ i18n .label }}</a>
{{ end }} {{ end }}
</div> </div>
/for mobile --> <!-- /for mobile -->
</div> </div>
{{if not .IsHome }} {{if not .IsHome }}
@@ -82,14 +82,14 @@
</form> </form>
{{ end }} {{ end }}
<!-- for desktop <!-- for desktop -->
<div class="d-lg-flex d-none"> <div class="d-lg-flex d-none">
{{ range site.Params.nav_button }} {{ range site.Params.nav_button }}
<a href="{{ .link | absLangURL }}" <a href="{{ .link | absLangURL }}"
class="btn btn-sm {{if eq .style `outline`}}btn-outline-primary{{else}}btn-primary{{end}} ms-lg-4">{{ i18n .label }}</a> class="btn btn-sm {{if eq .style `outline`}}btn-outline-primary{{else}}btn-primary{{end}} ms-lg-4">{{ i18n .label }}</a>
{{ end }} {{ end }}
</div> </div>
/for desktop --> <!-- /for desktop -->
</nav> </nav>
</div> </div>
</header> </header>