26 lines
987 B
HTML
26 lines
987 B
HTML
<div class="content">
|
|
<section>
|
|
<h3>Matthew Grove</h3>
|
|
<p>Software engineer & amateur photographer from Surrey, UK.</p>
|
|
<p><a href="https://github.com/mgrove36/demo-code/tree/master{{ page.url | relative_url }}">View this page on GitHub.</a></p>
|
|
</section>
|
|
<section>
|
|
<h4>Other Links</h4>
|
|
<ul class="plain">
|
|
{% for link in site.data.other-links %}
|
|
<li><a href="{{ link.url }}" target="_blank"><i class="icon fa-{{ link.icon }}"> </i>{{ link.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<h4>Social Media</h4>
|
|
<ul class="plain">
|
|
{% for link in site.data.social-media %}
|
|
<li><a href="{{ link.url }}" target="_blank"><i class="icon fa-{{ link.icon }}"> </i>{{ link.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
<div class="copyright">
|
|
© Matthew Grove {{ "now" | date: "%Y" }}.
|
|
</div> |