.c-index
a(
class="c-index__link"
href="https://github.com/LeCoupa/awesome-cheatsheets"
target="_blank"
)
img(
:src="baseUrl + '/images/common/logo.png'"
:srcset="baseUrl + '/images/common/logo@2x.png'"
class="c-index__logo"
)
p.c-index__description
| Awesome cheatsheets for popular programming languages, frameworks and development tools.
|Β They include everything you should know in one single file. π©βπ»π¨βπ»
the-github-buttons(
repo="awesome-cheatsheets"
user="LeCoupa"
class="c-index__github-buttons"
)
section(
v-for="(category, index) in categories"
:key="category.name"
class="c-index__category"
)
base-divider(
:category="'0' + (index + 1) + '. ' + category.name"
class="c-index__divider"
)
.c-index__cheatsheets
base-cheatsheet(
v-for="cheatsheet in category.cheatsheets"
:key="cheatsheet.name"
:link="cheatsheet.link"
:name="cheatsheet.name"
:thumbnail="cheatsheet.thumbnail"
)