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
<header class="header"> | |
<div class="container relative"> | |
<a href="/" class="header__logo svg-logo svg-logo-dims"></a> | |
<h1 class="header__sitename svg-sitename svg-sitename-dims"></h1> | |
<ul class="lang-switch inline-list"> | |
<li class="lang-switch__item"><a href="/" class="lang-switch__link eng">English</a></li> | |
<li class="lang-switch__item"><a href="/evangile21" class="lang-switch__link fra">Francais</a></li> | |
<li class="lang-switch__item"><a href="/coalicion" class="lang-switch__link esp">Español</a></li> | |
<li class="lang-switch__item"><a href="//australia.thegospelcoalition.org" class="lang-switch__link aus">Australian</a></li> | |
<li class="lang-switch__item"><a href="/about/donate" class="lang-switch__link">Donate</a></li> |
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
{% for entry in craft.entries | |
.section('blog') | |
.limit(10) | |
%} | |
<a href="{{ entry.url }}">{{ entry.title }}</a> | |
{% endfor %} |
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
DELETE exp_members, exp_member_data, exp_member_homepage FROM exp_members | |
INNER JOIN exp_member_data | |
INNER JOIN exp_member_homepage | |
WHERE exp_member_data.member_id = exp_members.member_id | |
AND exp_members.member_id = exp_member_homepage.member_id | |
AND exp_members.group_id = 'x' |
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
{exp:low_search:form form_id="state-search" form_class="state-search" result_page="app/results"} | |
<label for="state-selector">Filter by state</label> | |
<select class="state-selector" name="search:church_state" id="state-selector"> | |
<option value="#">Choose a state</option> | |
{exp:reegion_select:states} | |
<option class="state-selector__item" value="{region_alpha2}">{region_name}</option> | |
{/exp:reegion_select:states} | |
</select> | |
{/exp:low_search:form} |
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
{layout="layouts/directory" title="Churches in {segment_3}"} | |
<section class="church-directory__results full-width mod"> | |
{sn_search_form} | |
{sn_search_filter} | |
<h1>Churches in: {exp:low_search:keywords query="{segment_3}"}</h1> | |
{sn_search_legend} |
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
var gulp = require('gulp'), | |
gulpif = require('gulp-if'), | |
sprite = require('css-sprite').stream, | |
sass = require('gulp-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
rename = require('gulp-rename'), | |
notify = require('gulp-notify'), | |
clean = require('gulp-clean'), | |
watch = require('gulp-watch'), |
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
&__item { | |
text-align: center; | |
margin-bottom: 20px; | |
@include span(6); | |
@include bp(m) { | |
@include span(4); | |
} | |
@include bp(l) { |
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
--- | |
vagrantfile-local: | |
vm: | |
box: puphpet/ubuntu1204-x64 | |
box_url: puphpet/ubuntu1204-x64 | |
hostname: '' | |
memory: '512' | |
cpus: '1' | |
chosen_provider: virtualbox | |
network: |
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 | |
$config['cookie_httponly'] = "y"; | |
if ( ! defined('EXT')){ | |
exit('Invalid file request'); | |
} | |
$protocol = (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") ? "https://" : "http://"; | |
$base_url = $protocol . $_SERVER['HTTP_HOST']; | |
$base_path = $_SERVER['DOCUMENT_ROOT']; |
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 | |
if ( ! defined('EXT')){ | |
exit('Invalid file request'); | |
} | |
require 'config.php'; |