- Fix template variable replacement in guide pages by removing {{}} brackets
- Escape code blocks in guide markdown to prevent template processing
- Completely rewrite guide documentation with comprehensive CMS features
- Add bilingual guide support (English/Dutch) with detailed examples
- Enhance CodePressCMS core with improved guide page handling
- Update template system with better layout and footer components
- Improve language files with additional translations
- Update configuration with enhanced theme and language settings
Resolves issue where guide pages were showing replaced template variables
instead of displaying them as documentation examples.
43 lines
2.5 KiB
Plaintext
43 lines
2.5 KiB
Plaintext
<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>
|
|
{{#file_info_block}}
|
|
<span class="ms-2">
|
|
<i class="bi bi-calendar-plus footer-icon" title="{{t_created}}: {{created}}"></i>
|
|
<span class="file-created">{{created}}</span>
|
|
<i class="bi bi-calendar-check ms-1 footer-icon" title="{{t_modified}}: {{modified}}"></i>
|
|
<span class="file-modified">{{modified}}</span>
|
|
</span>
|
|
{{/file_info_block}}
|
|
</small>
|
|
</div>
|
|
<div class="site-info">
|
|
<small class="text-muted">
|
|
<a href="?guide&lang={{current_lang}}" class="footer-icon guide" title="{{t_guide}}">
|
|
<i class="bi bi-book"></i>
|
|
</a>
|
|
<span class="ms-1">|</span>
|
|
<a href="https://git.noorlander.info/E.Noorlander/CodePress.git" target="_blank" rel="noopener" class="footer-icon cms" title="{{t_powered_by}} CodePress CMS {{cms_version}}">
|
|
<i class="bi bi-cpu"></i>
|
|
</a>
|
|
<span class="ms-1">|</span>
|
|
<a href="{{author_website}}" target="_blank" rel="noopener" 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" class="footer-icon git" title="{{t_author_git}}">
|
|
<i class="bi bi-git"></i>
|
|
</a>
|
|
</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer> |