This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import VueRouter from 'vue-router' | |
Vue.use(VueRouter) | |
import App from './components/App.vue' | |
import Home from './components/Home.vue' | |
import Technologies from './components/Technologies.vue' | |
import Projects from './components/Projects.vue' | |
import OpenSources from './components/OpenSources.vue' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Sandi Rosyandi</title> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> | |
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" /> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "vue-cosmic-portfolio", | |
"version": "0.0.1", | |
"main": "index.js", | |
"repository": "git@github.com:sandi-racy/vue-cosmic-portfolio.git", | |
"author": "Sandi Rosyandi <ndi_racy@rocketmail.com>", | |
"license": "MIT", | |
"scripts": { | |
"build": "webpack", | |
"start": "node app.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template lang="jade"> | |
.page | |
.row | |
.col-md-8.col-md-offset-2 | |
.row.projects__introduction | |
.col-md-12 | |
h1 My open source projects | |
.row.projects__list(v-for="project in projects") | |
.col-md-12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template lang="jade"> | |
.page | |
.row | |
.col-md-8.col-md-offset-2 | |
.row.technology__introduction | |
.col-md-12 | |
h1 Technologies that I use | |
.row | |
.col-md-4(v-for="technology in technologies") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template lang="jade"> | |
.page | |
.row.introduction | |
.col-md-8.col-md-offset-2 | |
h1.introduction__text {{ metadata.introduction }} | |
.row | |
.col-md-12 | |
img(:src="metadata.image.url").img-responsive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template lang="jade"> | |
.container | |
.row | |
.col-md-5.col-md-offset-7 | |
main-menu | |
router-view | |
.row.footer.text-center | |
.col-md-12.social-media |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import VueRouter from 'vue-router' | |
Vue.use(VueRouter) | |
window.cosmicJsConfig = { | |
bucket: { | |
slug: 'c4ce2db0-e2f9-11e7-b8ae-3589834ee233' | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import VueRouter from 'vue-router' | |
Vue.use(VueRouter) | |
window.cosmicJsConfig = { | |
bucket: { | |
slug: 'yourSlug' | |
} | |
} |
NewerOlder