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

widgets.html « partials « layouts - github.com/ijsucceed/onepress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9bfc682a82b4e68810055e80ff23ae5636383354 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
<div class="widgets">
      
  <section itemscope itemtype="https://schema.org/Person" class="widget socials">
    <h2 class="widget-title">Socials</h2>
    <ul>
        {{ if .Site.Params.facebook }}
            <li><a href="{{ .Site.Params.facebook }}"><i class="fa fa-facebook"></i></a></li>
        {{ end }}
        {{ if .Site.Params.twitter }}
        <li><a href="{{ .Site.Params.twitter }}"><i class="fa fa-twitter"></i></a></li>
        {{end}}
        {{ if .Site.Params.linkedin }}
        <li><a href="{{ .Site.Params.linkedin }}"><i class="fa fa-linkedin"></i></a></li>
        {{end}}
        {{ if .Site.Params.github }}
        <li><a href="{{ .Site.Params.github }}"><i class="fa fa-github"></i></a></li>
        {{end}}
    </ul>
  </section>
 
  <section class="widget widget-one">
     <h2 class="widget-title">
        Widget 2
    </h2>
    <!-- add content here -->
  </section>
    
  <section itemscope itemtype="https://schema.org/Person" class="widget">
    <h2 class="widget-title">
        Widget 3
    </h2>
    <!-- add content here -->
  </section>
    
 <!-- You can add multiple widgets section below -->

</div>