add content

This commit is contained in:
André Weller
2019-05-12 02:45:16 +02:00
parent 9f3f9b13f7
commit 344c33d9e3
5 changed files with 89 additions and 1 deletions

41
pages/general/index.vue Normal file
View File

@@ -0,0 +1,41 @@
<template lang="pug">
div
h1 General
.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: 'Developer Roadmap',
desc: 'Below you find a set of charts demonstrating the paths that you can take and the technologies that you would want to adopt in order to become a frontend, backend or a devops. I made these charts for an old professor of mine who wanted something to share with his college students to give them a perspective; sharing them here to help the community.',
url: 'https://github.com/kamranahmedse/developer-roadmap/blob/master/readme.md'
},
{
title: 'Google Developer',
desc: 'Tutorials, guides, and best practices for building the next generation of web experiences.',
url: 'https://developers.google.com/web/'
},
]
}
},
components: {
Card
}
}
</script>
<style lang="scss" scoped>
h1 {
margin-bottom: 2rem;
}
</style>