Skip to content

Instantly share code, notes, and snippets.

View bluebird12's full-sized avatar

Steffen Müller bluebird12

  • webjacob.com
  • Hamburg
View GitHub Profile
@davision
davision / nuxt-js-and-gsheet-example.vue
Created June 8, 2018 11:27 — forked from yann-yinn/nuxt-js-and-gsheet-example.vue
Nuxt.js vue component to display datas from a google spreadsheet (with google api V4 without oAuth )
<template>
<div id="homepage">
<h1>Les dernières Articles</h1>
<div class="article" v-for="article in articles">
<h2> {{ article.title }} </h2>
<p> {{ article.content }} </p>
</div>
</div>
</template>
@samhotchkiss
samhotchkiss / gitignore-for-wp
Created August 9, 2013 01:35
Basic Gitignore for WordPress
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your