2018-09-09 15:06:11 +00:00
|
|
|
|
<!-- *************************************************************************
|
|
|
|
|
TEMPLATE
|
|
|
|
|
************************************************************************* -->
|
2018-09-09 14:50:38 +00:00
|
|
|
|
|
2018-09-09 15:06:11 +00:00
|
|
|
|
<template lang="pug">
|
2018-09-09 15:26:24 +00:00
|
|
|
|
.c-index
|
2018-09-09 16:58:41 +00:00
|
|
|
|
img(
|
|
|
|
|
src="/images/common/logo.png"
|
|
|
|
|
srcset="/images/common/logo@2x.png"
|
|
|
|
|
class="c-index__logo"
|
|
|
|
|
)
|
2018-09-09 17:18:40 +00:00
|
|
|
|
p.c-index__description
|
|
|
|
|
| Awesome cheatsheets for popular programming languages, frameworks and development tools.<br/>
|
|
|
|
|
| They include everything you should know in one single file. 👩💻👨💻
|
|
|
|
|
|
|
|
|
|
section(
|
|
|
|
|
v-for="(category, index) in categories"
|
|
|
|
|
class="c-index__category"
|
2018-09-09 15:26:24 +00:00
|
|
|
|
)
|
2018-09-09 17:18:40 +00:00
|
|
|
|
base-divider(
|
|
|
|
|
:category="'0' + (index + 1) + '. ' + category.name"
|
|
|
|
|
)
|
2018-09-09 15:06:11 +00:00
|
|
|
|
</template>
|
2018-09-09 14:50:38 +00:00
|
|
|
|
|
2018-09-09 15:06:11 +00:00
|
|
|
|
<!-- *************************************************************************
|
|
|
|
|
SCRIPT
|
|
|
|
|
************************************************************************* -->
|
2018-09-09 14:50:38 +00:00
|
|
|
|
|
2018-09-09 15:06:11 +00:00
|
|
|
|
<script>
|
2018-09-09 17:18:40 +00:00
|
|
|
|
import BaseDivider from "@/components/BaseDivider";
|
|
|
|
|
|
2018-09-09 15:26:24 +00:00
|
|
|
|
export default {
|
2018-09-09 17:18:40 +00:00
|
|
|
|
components: {
|
|
|
|
|
BaseDivider
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-09 15:26:24 +00:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
2018-09-09 17:18:40 +00:00
|
|
|
|
categories: [
|
|
|
|
|
{
|
|
|
|
|
name: "Languages"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Backend"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Frontend"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Databases"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Tools"
|
|
|
|
|
}
|
|
|
|
|
]
|
2018-09-09 15:26:24 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-09-09 15:06:11 +00:00
|
|
|
|
</script>
|
2018-09-09 14:50:38 +00:00
|
|
|
|
|
2018-09-09 15:06:11 +00:00
|
|
|
|
<!-- *************************************************************************
|
|
|
|
|
STYLE
|
|
|
|
|
************************************************************************* -->
|
2018-09-09 14:50:38 +00:00
|
|
|
|
|
2018-09-09 16:58:41 +00:00
|
|
|
|
<style lang="scss">
|
|
|
|
|
$c: ".c-index";
|
|
|
|
|
|
|
|
|
|
#{$c} {
|
|
|
|
|
#{$c}__logo {
|
|
|
|
|
width: 245px;
|
|
|
|
|
height: 165px;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#{$c}__description {
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin: 40px 0;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
line-height: 36px;
|
|
|
|
|
}
|
2018-09-09 17:18:40 +00:00
|
|
|
|
|
|
|
|
|
#{$c}__category {
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
}
|
2018-09-09 16:58:41 +00:00
|
|
|
|
}
|
|
|
|
|
</style>
|