itsumura-h / nim-basolato

An asynchronous fullstack web framework for Nim.
MIT License
237 stars 18 forks source link

style have to place in bottom of component #290

Open itsumura-h opened 8 months ago

itsumura-h commented 8 months ago
let style = styleTmpl(Css, """
  .hoge {
    color: red;
  }
""")

tmpli html"""
$(style)
<p class="$(style.element("hoge"))">hello</p>
"""

let style = styleTmpl(Css, """
  .hoge {
    color: red;
  }
""")

tmpli html"""
<p class="$(style.element("hoge"))">hello</p>
$(style)
"""