451-tools
Version:
Censorship resilient and distributed publishing: informed by the needs of publishers and their audiences, More Mirrors implements a set of offline fallback strategies for censorship resilient websites.
21 lines (20 loc) • 600 B
TypeScript
export default function offlinePageReplaceDictionary({ language, textDirection, templateStrings, mainCSS, mainJS, }: {
language: any;
textDirection: any;
templateStrings: any;
mainCSS: any;
mainJS: any;
}): {
'{{ language }}': any;
'{{ textDirection }}': any;
'{{ mainCSS }}': any;
'{{ mainJS }}': any;
'{{ pageTitle }}': any;
'{{ pageDescription }}': any;
'{{ homeLinkText }}': any;
'{{ bookmarksTabTitle }}': any;
'{{ editorialTabTitle }}': any;
'{{ aboutTabTitle }}': any;
'{{ copyright }}': any;
'{{ aboutInnerHTML }}': any;
};