feat: ajouter une nouvelle page d'installation et mettre à jour les liens de documentation
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{{ define "main" }}
|
||||
<div class="container mx-auto px-4 py-8 mb-12 flex-1">
|
||||
<h1 class="text-4xl font-bold text-center mb-5">{{ .Title }}</h1>
|
||||
{{ with .Params.description }}
|
||||
<p class="text-center text-gray-500 sm:text-xl mb-5">{{ . | markdownify }}</p>
|
||||
{{ end }}
|
||||
|
||||
<div class="max-w-xxl mx-auto p-6 bg-white rounded shadow" >
|
||||
{{ .Content | markdownify }}
|
||||
</div>
|
||||
{{ if .Page.Params.developers }}
|
||||
{{ partial "shortcodes/contact-developer.html" (dict "developers" .Page.Params.developers) }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
@@ -8,5 +8,8 @@
|
||||
<div class="!max-w-none">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
{{ if .Page.Params.developers }}
|
||||
{{ partial "shortcodes/contact-developer.html" (dict "developers" .Page.Params.developers) }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
{{ partial "shortcodes/contact-developer.html" (dict "developers" .Page.Params.developers) }}
|
||||
Reference in New Issue
Block a user