View boltflow_inuit_config_local_dev.yml
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
# This is the DEVELOPMENT version of config_local.yml | |
# Database credentials. | |
database: | |
driver: mysql | |
databasename: bolt | |
username: database_user | |
password: 'hunter42' | |
# Use unoptimized theme in development |
View _table_set.twig
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
{% if table %} | |
<table> | |
{% if table.header %} | |
<thead> | |
<tr> | |
{% for th in table.header %} | |
<th>{{ th.c }}</th> | |
{% endfor %} | |
</tr> | |
</thead> |
View inuitcss.css
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
@charset "UTF-8"; | |
/* ========================================================================== | |
INUITCSS | |
========================================================================== */ | |
/** | |
* inuitcss, by @csswizardry | |
* | |
* github.com/inuitcss | inuitcss.com | |
*/ | |
/** |
View inuitcss.css
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
@charset "UTF-8"; | |
/* ========================================================================== | |
INUITCSS | |
========================================================================== */ | |
/** | |
* inuitcss, by @csswizardry | |
* | |
* github.com/inuitcss | inuitcss.com | |
*/ | |
/** |
View boltflow-bitbucket-deploy.php
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
<?php | |
$repo_dir = '/home/username'; | |
$branch_to_deploy = 'master'; | |
$update = false; | |
// Parse data from Bitbucket hook payload | |
$payload = json_decode($_POST['payload']); | |
if (empty($payload->commits)) { |
View Export Layers To Files (Clean).jsx
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
// Export Layers To Files (Clean) | |
// Copyright 2007. Adobe Systems, Incorporated. All rights reserved. | |
// This script will export each layer in the document to a separate file. | |
// Written by Naoki Hada | |
// ZStrings and auto layout by Tom Ruark | |
// Bug fixes by Eric Ching | |
// Modded for cleaner output by Zomars | |
/* |
View encounterGradient.css
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
background: linear-gradient(1deg, #a24bcf, #cf4b4b, #c0cf4b, #52cf4b, #52cf4b, #4bc5cf, #4b79cf); | |
background-size: 1400% 1400%; | |
-webkit-animation: encounterGradient 30s ease infinite; | |
-moz-animation: encounterGradient 30s ease infinite; | |
-o-animation: encounterGradient 30s ease infinite; | |
animation: encounterGradient 30s ease infinite; | |
@-webkit-keyframes encounterGradient { | |
0%{background-position:50% 0%} | |
50%{background-position:51% 100%} | |
100%{background-position:50% 0%} |
View AJAX-conditional-layout.twig
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
{# Extend a different layout if requested via AJAX #} | |
{% extends app.request.isXmlHttpRequest ? 'layout-ajax.twig' : 'layout.twig' %} |
View SassMeister-input.scss
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$spacing-unit: 24px; | |
$spacing-unit-tiny: round(0.25 * $spacing-unit); | |
$spacing-unit-small: round(0.5 * $spacing-unit); | |
$spacing-unit-large: round(2 * $spacing-unit); |
View gist:6f94bcd8528ff1b82ea8
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
<?php | |
// Script to install the latest version of Bolt.cm CMS | |
// Define function to test if curl is installed on the server | |
function _is_curl_installed() { | |
if (in_array ('curl', get_loaded_extensions())) { | |
return true; | |
} else { | |
return false; | |
} |