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

51
pages/frontend/index.vue Normal file
View File

@@ -0,0 +1,51 @@
<template lang="pug">
div
h1 Frontend
.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: 'Frontend Handbook 2019',
desc: 'A lovely guide made by frontendmasters.',
url: 'https://frontendmasters.com/books/front-end-handbook/2019/'
},
{
title: 'Frontend Style Guide',
desc: 'Example on how to style, format and organize your frontend project.',
url: 'https://kaliop.github.io/frontend-style-guide/2.0/'
},
{
title: 'Learn to Code HTML and CSS',
desc: 'Learn to Code HTML & CSS is a simple and comprehensive guide dedicated to helping beginners learn HTML and CSS. Outlining the fundamentals, this guide works through all common elements of front-end design and development.',
url: 'https://learn.shayhowe.com/html-css/'
},
{
title: 'Frontendmasters',
desc: 'Premium tier video courses for any modern stack. Monthly or yearly subscription.',
url: 'https://frontendmasters.com'
},
{
title: 'Don\'t fear the internet',
desc: 'Basic HTML & CSS for NON-WEB DESIGNERS',
url: 'http://www.dontfeartheinternet.com/'
},
]
}
},
components: {
Card
}
}
</script>
<style lang="scss" scoped>
</style>