X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FVariants.vue;h=8e28e50024aeee273ee1441621be9fbadf804c79;hb=a57faf48c575029ecbba41de0f87bfe11d8c4e4b;hp=d638b0759c949fa6d499aec29c687c3b67d16605;hpb=737a5dafb39740ebe304b8d0a82df85070def571;p=vchess.git diff --git a/client/src/views/Variants.vue b/client/src/views/Variants.vue index d638b075..8e28e500 100644 --- a/client/src/views/Variants.vue +++ b/client/src/views/Variants.vue @@ -4,28 +4,57 @@ main .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 a#mainLink(href="/#/variants/list") | {{ st.tr["View alphabetical variants list"] }} - div(v-html="content") + p.text-center + a.leftLink(href="https://www.chessvariants.com/what.html") + | {{ st.tr["What is a chess variant?"] }} + a(href="https://www.chessvariants.com/why.html") + | {{ st.tr["Why play chess variants?"] }} + p + a(href="/#/variants/Chess") Chess + | {{ st.tr["chess_v"] }} + div(v-for="g of sortedGroups") + h3 {{ st.tr["vt" + g] }} + p {{ st.tr["vg" + g] }} + ul + li(v-for="v of variantGroup.get(g)") + a(:href="getLink(v)") {{ v.display }} + |  –  + | {{ st.tr[v.description] }}