Join the conversation

Sign in to join this conversation, and others like it, in the communities you care about.

Wekan

Wekan is an open-source kanban board (Trello like) which allows a card-based task and to-do management.

Wekan / General

Where can I find the <html> tag

Where can I find the <html> tag

Wekan / General · June 20, 2019 at 9:39pm

Hi I'm trying to find the html tag in order to add attributes to it but I can not find it anywhere. I tried looking in: \client\components\main\layouts.jade and in: \client\components\main\header.jade

Thank in advance


June 21, 2019 at 7:05pm
  • reply
  • like

June 21, 2019 at 8:10pm

Admin Panel/Layout/html tag options do not work yet

    • reply
    • like

    June 21, 2019 at 9:49pm

    What I want to do is to add an attibute to make the direction of the page rtl. I can do like this: html(dir='rtl') But I can't find the html tag in jade file and when I add it I get an erorr

      • reply
      • like

      this gives an error:

      html(dir='rtl') head title meta(name="viewport" content="maximum-scale=1.0,width=device-width,initial-scale=1.0,user-scalable=0") meta(http-equiv="X-UA-Compatible" content="IE=edge") //- XXX We should use pathFor in the following href to support the case where the application is deployed with a path prefix, but it seems to be difficult to do that cleanly with Blaze -- at least without adding extra packages. link(rel="shortcut icon" href="/wekan-favicon.png") link(rel="apple-touch-icon" href="/wekan-favicon.png") link(rel="mask-icon" href="/wekan-logo-150.svg") link(rel="manifest" href="/wekan-manifest.json")

        • reply
        • like

        June 26, 2019 at 8:50am

        I don't know. Wekan uses Jade for templates https://github.com/mquandalle/meteor-jade , you can try to look there and do Google search for jade html converter etc, that is maybe also linked at Wekan GitHub wiki Developer Docs for Standalone Wekan page. If you find out how it is made in Jade syntax, please tell me or add pull request to Wekan https://github.com/wekan/wekan edge branch.

          Edited
          • reply
          • like

          July 8, 2019 at 8:32pm

          Ok thanks The meteor-jade package seems the problem, in a plain jade file it works just fine. I solved the problem in another way

            • reply
            • like

            July 8, 2019 at 9:45pm

            @mjo How?

              • reply
              • like

              @mjo How did you solve problem?

                • reply
                • like

                July 9, 2019 at 8:10pm

                I injected a new css file using javascript

                  • reply
                  • like