Welcome to mirror list, hosted at ThFree Co, Russian Federation.

title-bar.html « partials « layouts - github.com/2-REC/hugo-myportfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2bd2ff87a504046b5b99336aa5f6dcf5eb75bb2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{/*
    Parameters:
    - length: width of title bar
    - align: alignment (left|center|right)
    - title: the title text
*/}}
<div class="row">
    {{ $title_length := 10 }}
    {{ with .length }}
        {{ $title_length = . }}
    {{ end }}
    {{ if eq .align "left" }}
    <div class="col-md-{{ $title_length }} section-title-left">
    {{ else if eq .align "right" }}
    <div class="col-md-{{ $title_length }} col-md-offset-{{ sub 12 $title_length }} section-title-right">
    {{ else }}
    <div class="col-md-{{ $title_length }} col-md-offset-{{ div (sub 12 $title_length) 2 }} section-title-center">
    {{ end }}
        {{ with .title }}
        <h2 class="section-heading">{{ . }}</h2>
        <hr class="section-hr">
        {{ end }}
    </div>
</div>