Revert "Merge pull request #54 from S3B4S/dynamic-routing"

This reverts commit f13f012c29, reversing
changes made to bc0aab4217.
This commit is contained in:
lost.design
2019-06-16 08:22:26 +02:00
parent 36df8a25b1
commit 90b50220a4
17 changed files with 966 additions and 756 deletions

38
pages/fullstack/index.vue Normal file
View File

@@ -0,0 +1,38 @@
<template lang="pug">
div
h1 Fullstack
.cards
template(v-for='resource in resources')
Card(:title='resource.title' :desc='resource.desc' :url='resource.url')
</template>
<script>
import Card from '../../components/Card'
export default {
data() {
return {
resources: [
{
title: 'freeCodeCamp curriculum',
desc: 'We have thousands of coding lessons to help you improve your skills. You can earn each certification by completing its 5 final projects. And yes - all of this is 100% free, thanks to the thousands of campers who donate to our nonprofit. If you are new to coding, we recommend you start at the beginning.',
url: 'https://learn.freecodecamp.org'
},
{
title: 'Learn Node',
desc: 'Permium course by WesBos teaching you the MEPN (Mongo, Express, Pug, Node) stack using a fullstack project as example.',
url: 'https://learnnode.com'
},
]
}
},
components: {
Card
}
}
</script>
<style lang="scss" scoped>
</style>