Improve style on variant page; TODO: problems, Crazyhouse
[vchess.git] / views / variant.pug
index 803c7de..a3b846f 100644 (file)
@@ -10,24 +10,43 @@ block content
                        .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
                                label.drawer-toggle(for="drawer-control")
                                input#drawer-control.drawer(type="checkbox")
-                               div
+                               #menuBar
                                        label.drawer-close(for="drawer-control")
-                                       a(href="#") Home
-                                       a(href="#") Home222
+                                       a#homeLink.conditional-jump(href="/")
+                                               i.material-icons home
+                                       .info-container
+                                               a.conditional-jump(href="#rules" @click="setDisplay('rules')")
+                                                       | Rules
+                                               a.conditional-jump(href="#play" @click="setDisplay('game')")
+                                                       | Play!
+                                               a.conditional-jump(href="#problems" @click="setDisplay('problems')") 
+                                                       | Problems
+                                       #flagMenu.conditional-jump(
+                                                       onClick="document.getElementById('modalLang').checked=true")
+                                               img(src="/images/flags/" + lang + ".svg")
+                                       #helpMenu.conditional-jump(
+                                                       onClick="document.getElementById('modalHelp').checked=true")
+                                               .info-container
+                                                       p Help
                .row
-                       .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
-                               h4.variantpage-title.text-center(v-on:click="toggleDisplay('rules')")
-                                       | #{variant} Rules
-                               my-rules(v-show="display=='rules'")
-                       .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
-                               h4.variantpage-title.text-center(v-on:click="toggleDisplay('game')")
-                                       | #{variant} Game
-                               my-game(v-show="display=='game'" v-bind:problem="problem")
-                       .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
-                               h4.variantpage-title.text-center(v-on:click="toggleDisplay('problems')")
-                                       | #{variant} Problems
-                               my-problems(v-show="display=='problems'"
-                                       v-on:show-problem="showProblem($event)")
+                       .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2(
+                                       v-show="display=='rules'")
+                               my-rules
+                       .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2(
+                                       v-show="display=='game'")
+                               my-game(v-bind:problem="problem")
+                       .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2(
+                                       v-show="display=='problems'")
+                               my-problems(v-on:show-problem="showProblem($event)")
+               // (Some) Modals:
+               include modal-help.pug
+               include modal-lang.pug
+               input#modal-newgame.modal(type="checkbox")
+               div(role="dialog" aria-labelledby="newGameTxt")
+                       .card.smallpad.small-modal
+                               label#close-newgame.modal-close(for="modal-newgame")
+                               h3#newGameTxt New game
+                               p Waiting for opponent...
 
 block javascripts
        script(src="/javascripts/utils/misc.js")