Fix challenge creation (TODO: decide a challenge structure)
[vchess.git] / views / index.pug
index 392e27a..6ea4516 100644 (file)
@@ -4,21 +4,45 @@ block css
        link(rel="stylesheet", href="/stylesheets/index.css")
 
 block content
-       .container#indexPage
+       .container
+               case lang
+                       when "en"
+                               include welcome/en
+                       when "es"
+                               include welcome/es
+                       when "fr"
+                               include welcome/fr
                .row
-                       .col-sm-12
-                               h1.text-center Welcome to v[ariant] chess club !
-               .row
-                       my-variant-summary(
-                               v-for="(v,idx) in sortedCounts",
-                               v-show="v.name.startsWith(curPrefix)",
-                               v-bind:vobj="v",
-                               v-bind:key="v.name")
+                       #header.col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
+                               #mainTitle.clickable(onClick="doClick('modalWelcome')")
+                                       img(src="/images/index/unicorn.svg")
+                                       .info-container
+                                               p vchess.club
+                                       img(src="/images/index/wildebeest.svg")
+                               #flagMenu.clickable(onClick="doClick('modalLang')")
+                                       img(src="/images/flags/" + lang + ".svg")
+                               include userMenu
+                               a.right-menu(v-show="display=='variants'" href="#correspondance")
+                                       .info-container
+                                               p Correspondance
+                               a.right-menu(v-show="display=='correspondance'" href="#variants")
+                                       .info-container
+                                               p Variants
+               .row(v-show="display=='variants'")
+                       .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
+                               label(for="prefixFilter") Type first letters...
+                               input#prefixFilter(v-model="curPrefix")
+                       my-variant-summary(v-for="(v,idx) in sortedCounts"
+                               v-bind:vobj="v" v-bind:index="idx" v-bind:key="v.name")
+               .row(v-show="display=='correspondance'")
+                       my-correspondance
 
 block javascripts
        script.
                const variantArray = !{JSON.stringify(variantArray)};
-               //JSON.parse("!{variantArray}".replace(/\"/g,'"'));
-       script(src="/javascripts/utils/socket_url.js")
+       script(src="/javascripts/socket_url.js")
        script(src="/javascripts/components/variantSummary.js")
+       script(src="/javascripts/components/gameList.js")
+       script(src="/javascripts/components/challengeList.js")
+       script(src="/javascripts/components/correspondance.js")
        script(src="/javascripts/index.js")