hugo-sustain/layouts/index.html
2016-10-25 02:14:23 +02:00

22 lines
982 B
HTML

{{ partial "head" . }}
<body>
<div id="wrap">
{{ partial "header" . }}
<section id="about">
<div class="container">
<div class="avatar">
<img class="img-circle" src="{{ .Site.BaseURL }}img/{{ .Site.Params.avatar }}" alt="Responsive image">
</div>
<h3>I'm <strong>{{ .Site.Params.author }}</strong>, a Software Engineer.</h3>
<h3>I love all things computer science and maths.</h3>
<h3>Have a look at some of my working <a href="{{ .Site.BaseURL }}projects/"> projects</a>.</h3>
<h3>For more check out my academic &amp; professional <a href="http://biomadeira.github.io/vitae">Resume</a>.</h3>
<h3>Contact me at <a href="http://twitter.com/{{ .Site.Social.Twitter }}">@{{ .Site.Social.Twitter }}</a> or by <a href="mailto:{{ .Site.Social.Email }}">email</a>.</h3>
{{ partial "social.html" . }}
</div>
</section>
</div>
{{ partial "footer" . }}
</body>
</html>