mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-12-25 23:56:49 -06:00
To keep the classes more organized, by having better scoping of classes. Fixes #121
21 lines
583 B
HTML
21 lines
583 B
HTML
<a class="section-card-anchor" href="{{ .Permalink }}">
|
|
<div class="section-card">
|
|
<div>
|
|
<h2 class="section-card-title">
|
|
{{ with .Params.icon }}{{ partial "icon.html" . }}{{ end }}
|
|
{{ .Title | markdownify }}
|
|
</h2>
|
|
|
|
{{ with .Summary }}
|
|
<div class="section-card-description">
|
|
{{ . }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div class="section-card-arrow">
|
|
{{ partial "icon.html" "arrow-right" }}
|
|
</div>
|
|
</div>
|
|
</a>
|