Improve persona pages
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
69b17ea1f2
commit
3fca077425
13 changed files with 471 additions and 220 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<div class="container-fluid mt-3 pt-4 pb-3">
|
||||
<div class="container-fluid my-5 py-4">
|
||||
<div class="row">
|
||||
<div class="col-md-10 offset-md-1 col-lg-8 offset-lg-2 col-xl-6 offset-xl-3">
|
||||
<p class="lead text-center">
|
||||
<div class="col-lg-10 offset-lg-1 col-xl-8 offset-xl-2">
|
||||
<p class="display-6 text-center" style="line-height: 1.5">
|
||||
{{ .Inner | markdownify }}
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
|||
9
layouts/shortcodes/usage-point.html
Normal file
9
layouts/shortcodes/usage-point.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{{ $icon := .Get "icon" }}
|
||||
{{ $title := .Get "title" }}
|
||||
<div class="col">
|
||||
<div class="card h-100 border-0 shadow-sm p-4 text-center">
|
||||
{{ with $icon }}<div class="display-5 mb-2 text-primary"><i class="bi bi-{{ . }}"></i></div>{{ end }}
|
||||
<h5 class="fw-bold">{{ $title }}</h5>
|
||||
<div class="text-muted">{{ .Inner | markdownify }}</div>
|
||||
</div>
|
||||
</div>
|
||||
9
layouts/shortcodes/usage-points.html
Normal file
9
layouts/shortcodes/usage-points.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{{ $title := .Get "title" }}
|
||||
<div class="container-fluid py-5 bg-primary-subtle">
|
||||
<div class="container my-5 py-5">
|
||||
{{ with $title }}<h3 class="fw-bold text-center mb-5">{{ . }}</h3>{{ end }}
|
||||
<div class="row row-cols-1 row-cols-md-3 g-4 justify-content-center">
|
||||
{{ .Inner }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue