X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FVariants.vue;h=4374fd049ac9e1d12a885d5ab3ea11c950836007;hb=eaa5ad3e93b761fefb16b32071be0b439761f843;hp=e5d02856f5ade3bdcb2de8e47ecca8cabf5ba1c1;hpb=58bf4670c6bf01d94fe1f798cd5d63493d15e196;p=vchess.git diff --git a/client/src/views/Variants.vue b/client/src/views/Variants.vue index e5d02856..4374fd04 100644 --- a/client/src/views/Variants.vue +++ b/client/src/views/Variants.vue @@ -2,52 +2,60 @@ main .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 - input#prefixFilter( - v-model="curPrefix" - @input="setCurPrefix($event)" - :placeholder="st.tr['Prefix?']" - ) - .variant.col-sm-12.col-md-5.col-lg-4( - v-for="(v,idx) in filteredVariants" - :class="getVclasses(filteredVariants, idx)" - ) - router-link(:to="getLink(v.name)") - h4.boxtitle.text-center {{ v.name }} - p.description.text-center {{ st.tr[v.desc] }} + a#mainLink(href="/#/variants/list") + | {{ st.tr["View alphabetical variants list"] }} + 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 }} + |  –  + | {{ v.description }}