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

projects.html « partials « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c886ff39f39abf3a6839ab4f791b1804e754fa2e (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="content" id="projects">
<h2 class="section-head">Projects</h2>

<div class="row project-grid">
    <div class="col-md-4 col-xs-12 text-center">
      <a href="{{ .Site.Params.project1link }}" class="thumbnail">
        {{ if .Site.Params.project1img }}
      <img class="img-responsive" src="/{{ .Site.Params.project1img }}" alt="{{ .Site.Params.project1title }}">
      </a>
        {{ end }}
      <a href="{{ .Site.Params.project1link }}" class="thumbnail">
      <span class="project-title">{{ .Site.Params.project1title }}</span>
      </a>
    </div>
    <div class="col-md-4 col-xs-12 text-center">
      <a href="{{ .Site.Params.project2link }}" class="thumbnail">
        {{ if .Site.Params.project2img }}
      <img class="img-responsive" src="/{{ .Site.Params.project2img }}" alt="{{ .Site.Params.project2title }}">
      </a>
      {{ end }}
      <a href="{{ .Site.Params.project1link }}" class="thumbnail">
      <span class="project-title">{{ .Site.Params.project2title }}</span>
      </a>
    </div>
    <div class="col-md-4 col-xs-12 text-center">
      <a href="{{ .Site.Params.project3link }}" class="thumbnail">
        {{ if .Site.Params.project3img }}
      <img class="img-responsive" src="/{{ .Site.Params.project3img }}" alt="{{ .Site.Params.project3title }}">
      </a>
      {{ end }}
      <a href="{{ .Site.Params.project1link }}" class="thumbnail">
      <span class="project-title">{{ .Site.Params.project3title }}</span>
      </a>
    </div>
</div>
	<div class="nav"><a href="#top"><i class="fa fa-arrow-up"></i></a></div>
</div>