feat(layout): remove about layout and associated configs

This commit is contained in:
curben 2019-10-17 06:44:57 +01:00
parent 5b0556ec16
commit 772fc46cee
No known key found for this signature in database
GPG Key ID: 5D9DB57A25D34EE3
2 changed files with 0 additions and 31 deletions

View File

@ -105,12 +105,3 @@ theme_config:
# Load forkawesome icons? See the links option below.
icons: false
# Footer area links
# If you set "icons: false" link names will be clear text
# If "icons: true" link names will interpreted as fontawesome icon names
# Use the forkawesome icon names (https://forkaweso.me/Fork-Awesome/icons/) without the fa- prefix
links:
Home: /blog/
Feed: /atom.xml
GitLab: https://gitlab.com/curben/blog

View File

@ -1,22 +0,0 @@
<div class="home">
<div class="content">
<div class="profile">
<h1 class="nickname"><%= theme.nickname %></h1>
<div class="description">
<p><%- markdown(theme.description) %></p>
</div>
</div>
<hr/>
</div>
</div>
<ul class="footer-links">
<% for (let key in theme.links) { %>
<li>
<% if (theme.icons) { %>
<a href="<%= theme.links[key] %>"><span class="fa fa-<%= key.toLowerCase() %>"></span></a>
<% } else { %>
<a href="<%= theme.links[key] %>"><%= key %></a>
<% } %>
</li>
<% } %>
</ul>