Adds a new theme called "Index"

adds an option to use textarea in theme settings.
Merged most Basic, Recent and Frameset theme functions in one.
you can add a video picture icon and quote in the homepage.
@ctrlcctrlv feel free to add suggestions and fix bladly formed code or let me know and I will try to fix.
i installed it on my demo site: https://hikichan.com/
This commit is contained in:
H1K1CH4N
2018-09-27 00:41:22 +02:00
parent a510ebcab9
commit b8f1c219f0
10 changed files with 645 additions and 0 deletions

View File

@@ -13,6 +13,8 @@
{% if settings[conf.name] or (not settings[conf.name] is defined and conf.default) %}
checked
{% endif %}>
{% elseif conf.type == 'textarea' %}
<textarea name="{{ conf.name }}">{% if settings[conf.name] %}{{ settings[conf.name] }}{% else %} {% if conf.default %}{{ conf.default }}{% endif %}{% endif %}</textarea>
{% else %}
<input type="text" name="{{ conf.name }}"
{% if settings[conf.name] %}
@@ -22,6 +24,7 @@
{% if conf.size %}
size="{{ conf.size }}"
{% endif %}>
{% endif %}
{% if conf.comment %}
<span class="unimportant">{{ conf.comment }}</span>
@@ -35,3 +38,8 @@
<input name="install" type="submit" value="{% trans 'Install theme' %}" />
</p>
</form>
<script>
$(function() {
( $('textarea').val() );
});
</script>