I hereby claim:
- I am tjFogarty on github.
- I am fogarty (https://keybase.io/fogarty) on keybase.
- I have a public key whose fingerprint is 3061 7481 280C 07B5 4542 02E2 AB51 0170 42A9 956C
To claim this, I am signing this object:
| <script> | |
| import { onMount } from 'svelte' | |
| import { records, record } from './stores' | |
| import * as api from './api' | |
| export let currentRecord | |
| export let hasBeenClicked = false | |
| record.subscribe(value => { | |
| currentRecord = value |
I hereby claim:
To claim this, I am signing this object:
| <h1>This should be a responsive heading title right here</h1> |
| /*global casper*/ | |
| 'use strict'; | |
| var config = require('../config'), | |
| page = 'http://' + config.local_url + '/', | |
| formData = { | |
| 's': 'suppliers' // search term | |
| }; |
| var gulp = require('gulp'); | |
| var config = require('../config'); | |
| var wiredep = require('wiredep').stream; | |
| gulp.task('wiredep', function () { | |
| gulp.src(config.wiredep_file) | |
| .pipe(wiredep({ | |
| directory: 'assets/lib', | |
| ignorePath: '..', | |
| fileTypes: { |
| <!doctype html> | |
| <html class="no-js" {{site.language_attributes}}> | |
| <head> | |
| <meta charset="{{site.charset}}"> | |
| <title> | |
| {% if wp_title %} | |
| {{ wp_title }} - {{ site.name }} | |
| {% else %} | |
| {{ site.name }} |
| /** | |
| * Utilities | |
| * see http://youmightnotneedjquery.com/ | |
| * @type {Object} | |
| */ | |
| var U = { | |
| /** | |
| * Call a function when DOM is ready | |
| * @param {Function} fn Function to call when DOM is ready | |
| */ |
| <?php | |
| /** | |
| * Template Name: Overview | |
| */ | |
| if (!class_exists('Timber')){ | |
| echo 'Timber not activated. Make sure you activate the plugin in <a href="/wp-admin/plugins.php#timber">/wp-admin/plugins.php</a>'; | |
| return; | |
| } |
| .c-alert { | |
| position: fixed; | |
| background: #333; | |
| background: rgba(51, 51, 51, 0.7); | |
| bottom: 30px; | |
| color: #fff; | |
| text-align: center; | |
| padding: 15px; | |
| border-radius: 4px; | |
| width: 300px; |