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

index.html « layouts - github.com/IvanChou/hugo-theme-vec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b2ec4622842a3dba8f11594627f468bf48140f7 (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
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
  <title> {{ .Site.Title }} </title>
  
  {{ with .Site.Params.Keywords }}<meta name="keywords" content="{{.}}">{{ end }}
  {{ with .Site.Params.Description }}<meta name="description" content="{{.}}">{{ end }}
  
  {{ partial "head.html" . }}
    
</head>

<body>
  {{ partial "header.html" . }}
  
  <section class="user-profile">
    <figure class="user-avatar">
      <img alt="avater" src="{{ .Site.Params.Avater }}">
      <figcaption class="user-socials">
        {{ with .Site.Params.TwitterID }}
        <a href="https://twitter.com/{{.}}" title="Twitter"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
        {{ end }}
        {{ with .Site.Params.GoogleplusID }}
        <a href="https://plus.google.com/{{.}}/about" title="Google+"><i class="fa fa-google-plus-square" aria-hidden="true"></i></a>
        {{ end }}
        {{ with .Site.Params.FacebookID }}
        <a href="https://facebook.com/{{.}}" title="Facebook"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
        {{ end }}
        {{ with .Site.Params.GithubID }}
        <a href="https://github.com/{{.}}" title="GitHub"><i class="fa fa-github-square" aria-hidden="true"></i></a>
        {{ end }}
        {{ with .Site.Params.LinkedInID }}
        <a href="http://linkedin.com/in/{{.}}" title="LinkedIn"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
        {{ end }}
        
      </figcaption>
    </figure>
    <p class="user-motivation">{{ .Site.Params.SelfIntro }}</p>
  </section>
  
  {{ partial "footer.html" . }}
  {{ partial "analytics.html" . }}

</body>
</html>