diff options
author | Vitaly Takmazov | 2018-11-22 18:46:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | 9cc09e79c6a424b008a6f188eb64236a9ca5d865 (patch) | |
tree | 7ca6737c02c2998e523767e7041392a7869b270e /vnext/src/views | |
parent | d64e29f2315b6e42eb4c5149348fd89ac61e6805 (diff) |
CSS Grid WIP
Diffstat (limited to 'vnext/src/views')
-rw-r--r-- | vnext/src/views/index.html | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/vnext/src/views/index.html b/vnext/src/views/index.html index b26d181f..3b8480d7 100644 --- a/vnext/src/views/index.html +++ b/vnext/src/views/index.html @@ -1,5 +1,6 @@ <!DOCTYPE html> <html prefix="og: http://ogp.me/ns#"> + <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> @@ -29,29 +30,29 @@ </head> <body> - <div id="body"> - <div id="header"> - <div id="header_wrapper"> - <div id="logo"><a href="/">Juick</a></div> + <div id="app"> + <div id="header"> + <div id="header_wrapper"> + <div id="logo"><a href="/">Juick</a></div> + </div> </div> - </div> - <div id="content"> - <noscript> - <article> - Javascript is required to use Juick from browser.<br /> Alternatively we have <a href="mailto:juick@juick.com">maillist-like</a> - and <a href="xmpp:juick@juick.com">chat</a> interfaces. - </article> - </noscript> - </div> - </div> - <div id="footer"> - <div id="footer-right"> · - <a href="/help/contacts" rel="nofollow">Contacts</a> · - <a href="/help/tos" rel="nofollow">TOS</a> + <div id="content"> + <noscript> + <article> + Javascript is required to use Juick from browser.<br /> Alternatively we have <a href="mailto:juick@juick.com">maillist-like</a> + and <a href="xmpp:juick@juick.com">chat</a> interfaces. + </article> + </noscript> </div> - <div id="footer-left">juick.com © 2008-2018 - <br /> - <!-- EXT_FOOTER --> + <div id="footer"> + <div id="footer-right"> · + <a href="/help/contacts" rel="nofollow">Contacts</a> · + <a href="/help/tos" rel="nofollow">TOS</a> + </div> + <div id="footer-left">juick.com © 2008-2018 + <br /> + <!-- EXT_FOOTER --> + </div> </div> </div> </body> |