Files
CodePress/themes/default/partials/footer.twig
T
E.Noorlander 6333bc410f CMS 2.0 - Theme engine, logging, admin improvements
Major changes:
- New ThemeManager with Twig templating and SCSS compilation
- Dynamic themes system (themes/default, themes/demo)
- LogManager with SQLite storage and syslog forwarding
- RequestLogger with static helper methods
- Admin UI overhaul (Bootstrap 5, dark mode)
- Admin config page with logging and theme settings
- Admin logs page with filters and search
- Removed legacy Mustache templates
- Removed test plugin and theme
- Composer dependencies: Twig, scssphp, CommonMark, MaxMind GeoIP
2026-08-08 18:02:14 +02:00

49 lines
2.9 KiB
Twig

<footer class="bg-light border-top py-1">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="d-flex flex-column flex-md-row justify-content-between align-items-start align-items-md-center">
<div class="file-info mb-2 mb-md-0">
<small class="text-muted">
<i class="bi bi-file-text footer-icon" title="{{ t_file_details }}: {{ page_title }}"></i>
<span class="page-title d-none d-lg-inline" title="{{ page_title }}">{{ page_title }}</span>
{% if file_info_block %}
<span class="ms-2">
{% if show_created %}
<i class="bi bi-calendar-plus footer-icon" title="{{ t_created }}: {{ created }}"></i>
<span class="file-created me-1" title="{{ t_created }}: {{ created }}">{{ created }}</span>
{% endif %}
<i class="bi bi-calendar-check footer-icon" title="{{ t_modified }}: {{ modified }}"></i>
<span class="file-modified" title="{{ t_modified }}: {{ modified }}">{{ modified }}</span>
</span>
{% endif %}
</small>
</div>
<div class="site-info">
<small class="text-muted">
<a href="/{{ current_lang }}/guide" class="footer-icon guide" title="{{ t_guide }}">
<i class="bi bi-book"></i>
</a>
<span class="ms-1">|</span>
{% if cms_version %}
<span class="ms-1 cms-version text-muted">{{ cms_version }}</span>
{% endif %}
<a href="https://git.noorlander.info/E.Noorlander/CodePress.git" target="_blank" rel="noopener noreferrer" class="footer-icon cms ms-1" title="{{ t_powered_by }} CodePress CMS">
<i class="bi bi-cpu"></i>
</a>
<span class="ms-1">|</span>
<a href="{{ author_website }}" target="_blank" rel="noopener noreferrer" class="footer-icon website" title="{{ t_author_website }}">
<i class="bi bi-globe"></i>
</a>
<span class="ms-1">|</span>
<a href="{{ author_git }}" target="_blank" rel="noopener noreferrer" class="footer-icon git" title="{{ t_author_git }}">
<i class="bi bi-git"></i>
</a>
</small>
</div>
</div>
</div>
</div>
</div>
</footer>