fix: overhaul comments system
All checks were successful
Website build and deploy / build (push) Successful in 1m5s

This commit is contained in:
2026-02-23 17:39:04 +01:00
parent b8be16d9f2
commit e13612f9e8
3 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ $config = [
// the URL of your blog. All toots are searched for this string // the URL of your blog. All toots are searched for this string
// please use https?:// as schema // please use https?:// as schema
'search-url' => 'https?://mehl.mx', 'search-url' => 'https?://mehl.mx',
'cache_toots' => 300, // seconds to cache toots 'cache_toots' => 1800, // seconds to cache toots
'cache_comments' => 300, // seconds to cache comments (per ID) 'cache_comments' => 300, // seconds to cache comments (per ID)
'debug' => false // writes some debug messages in error_log 'debug' => true // writes some debug messages in error_log
]; ];

View File

@@ -75,10 +75,10 @@
{{ end }} {{ end }}
</div> </div>
{{ end }} {{ end }}
<!-- comments -->
{{ partial "comments" . }}
</div> </div>
</div> </div>
<hr>
{{ partial "comments" . }}
{{ partial "social" . }} {{ partial "social" . }}
</div> </div>
</div> </div>