Added and internalized Pico theme for customization
This commit is contained in:
parent
8e7f72ce8b
commit
8c90bb2dfc
71 changed files with 4587 additions and 0 deletions
21
themes/pico/templates/index.html
Normal file
21
themes/pico/templates/index.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div class="row content" id="flexbox">
|
||||
<div class="col-2"></div>
|
||||
<div class="col-5 content" id="index-text">
|
||||
<h1 class="center">
|
||||
About
|
||||
</h1>
|
||||
{% if section.content %} {{ section.content | safe }}
|
||||
{% elif page.content %}
|
||||
{{ page.content }}
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<div id = "index-image">
|
||||
<img src="{{config.base_url}}{{ config.extra.avatar_src }}" alt="avatar" class="avatar">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue