This commit is contained in:
Lurkars
2021-01-12 19:29:00 +01:00
parent b7b4e2d032
commit 997a512e00
96 changed files with 2711 additions and 304 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export class HtmlComponent implements OnInit {
const headers = new HttpHeaders()
.set('content-type', 'text/html');
this.httpClient.get(
'./assets/templates/' + this.template + (this.locale ? "." + this.locale : "") + ".html",
'./assets/templates/' + (this.locale ? this.locale + "/" : "") + this.template + ".html",
{
headers: headers,
responseType: 'text'