NodeBB 4.14 registers a real __escape for template rendering (4.13 used
identity), so raw-HTML output must use the double-brace forms:
- HTML helpers: {{buildAvatar(...)}}, {{buildCategoryIcon(...)}}, etc.
- Pre-rendered HTML fields: {{txEscape(content)}} / {{./descriptionParsed}}
- Token-bearing text (nav labels, category names): {{tx(...)}}
- emails/partials/post-queue-body.tpl also adopts the 4.14 data shape
(notification.category/topic/user/content).
Mirrors the harmony 2.2.72 -> 3.0.15 and core 4.13.2 -> 4.14.0 diffs.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
35 lines
1.5 KiB
Smarty
35 lines
1.5 KiB
Smarty
<!DOCTYPE html>
|
|
<html lang="{localeToHTML(userLang, defaultLang)}" {{{if languageDirection}}}data-dir="{languageDirection}" style="direction: {languageDirection};"{{{end}}}>
|
|
<head>
|
|
<title>{browserTitle}</title>
|
|
{{{each metaTags}}}{{buildMetaTag(@value)}}{{{end}}}
|
|
<link rel="stylesheet" type="text/css" href="{relative_path}/assets/client{{{if bootswatchSkin}}}-{bootswatchSkin}{{{end}}}{{{ if (languageDirection=="rtl") }}}-rtl{{{ end }}}.css?{config.cache-buster}" />
|
|
{{{each linkTags}}}{{buildLinkTag(@value)}}{{{end}}}
|
|
|
|
<script>
|
|
var config = JSON.parse('{{configJSON}}');
|
|
var app = {
|
|
user: JSON.parse('{{userJSON}}')
|
|
};
|
|
document.documentElement.style.setProperty('--panel-offset', `0px`);
|
|
</script>
|
|
|
|
{{{if useCustomHTML}}}
|
|
{{customHTML}}
|
|
{{{end}}}
|
|
{{{if useCustomCSS}}}
|
|
<style>{{customCSS}}</style>
|
|
{{{end}}}
|
|
</head>
|
|
|
|
<body class="{bodyClass} skin-{{{if bootswatchSkin}}}{bootswatchSkin}{{{else}}}noskin{{{end}}}">
|
|
<a class="visually-hidden-focusable position-absolute top-0 start-0 p-3 m-3 bg-body" style="z-index: 1021;" href="#content">[[global:skip-to-content]]</a>
|
|
|
|
<div class="layout-container wg-layout-container d-flex flex-column pb-4 pb-md-0">
|
|
<!-- IMPORT partials/header/topbar.tpl -->
|
|
|
|
<main id="panel" class="d-flex flex-column gap-3 flex-grow-1 mt-3" style="min-width: 0;">
|
|
<div class="container-lg px-md-4 d-flex flex-column gap-3 h-100 mb-5 mb-lg-0" id="content">
|
|
<!-- IMPORT partials/noscript/warning.tpl -->
|
|
<!-- IMPORT partials/noscript/message.tpl -->
|