This file contains hidden or 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
<?php | |
// uncomment the following to define a path alias | |
// Yii::setPathOfAlias('local','path/to/local-folder'); | |
// This is the main Web application configuration. Any writable | |
// CWebApplication properties can be configured here. | |
return array( | |
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..', | |
'name'=>'My Web Application', |
This file contains hidden or 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
[PHP] | |
;;;;;;;;;;; | |
; WARNING ; | |
;;;;;;;;;;; | |
; This is the default settings file for new PHP installations. | |
; By default, PHP installs itself with a configuration suitable for | |
; development purposes, and *NOT* for production purposes. | |
; For several security-oriented considerations that should be taken | |
; before going online with your site, please consult php.ini-recommended |
This file contains hidden or 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 hidden or 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 hidden or 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' | |
} | |
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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") |
OlderNewer