mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
8e6aab0145
Since the interface is not always in english, we mostly removed the lang attribute from all html tags. Since the error messages in error.ejs are not translated, but always in english, there the global lang="en" should be kept. Also in the slide and editor template the div, which contains the user generated text, has the attribute translate="no" now, to avoid unwanted translations. Since on the publish view (pretty.ejs) only the user generated content is shown, we set the lang to the language defined in yaml (or 'en') as a default, but that was also moved to the corresponding markdown div instead of html. Fixes #881 See also #437 Signed-off-by: Philip Molares <philip.molares@udo.edu>
14 lines
228 B
Text
14 lines
228 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<%- include('hedgedoc/head') %>
|
|
</head>
|
|
|
|
<body translate="no">
|
|
<%- include('hedgedoc/header') %>
|
|
<%- include('hedgedoc/body') %>
|
|
<%- include('hedgedoc/footer') %>
|
|
</body>
|
|
|
|
</html>
|