{{ page_title }}

Themes
Upload a New Theme
{% include_template "_theme-list-columns" %}
Theme
Slug
Templates
{{ theme_list }}
{%- assign cache_base_url = "admin/cache/" -%} Caches

myWebLog uses a few caches to ensure that it serves pages as fast as possible. Normal actions taken within the admin area will keep these up to date; however, if changes occur outside of the system (creating a new web log via CLI, loading an updated theme via CLI, direct data updates, etc.), these options allow for the caches to be refreshed without requiring you to restart the application.

Web Logs
These caches include the page list and categories for each web log
{%- assign web_log_base_url = cache_base_url | append: "web-log/" -%}
Name
URL Base
{%- for web_log in web_logs %}
{{ web_log[1] }}
{%- assign refresh_url = web_log_base_url | append: web_log[0] | append: "/refresh" | relative_link -%} Refresh
{{ web_log[2] }}
{%- endfor %}
Themes
The themes template cache is loaded on demand; refresh a cache with 0 templates will still refresh the theme asset cache
{%- assign theme_base_url = cache_base_url | append: "theme/" -%}
Name
Cached Templates
{%- for theme in cached_themes %} {% unless theme[0] == "admin" %}
{{ theme[1] }}
{{ theme[0] }} • {%- assign refresh_url = theme_base_url | append: theme[0] | append: "/refresh" | relative_link -%} Refresh
{{ theme[2] }}
{% endunless %} {%- endfor %}