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 | |
namespace App\Console\Commands; | |
use App\User; | |
use Illuminate\Console\Command; | |
use Illuminate\Support\Facades\DB; | |
use Illuminate\Support\Facades\File; | |
use SplFileInfo; | |
use Statamic\Facades\YAML; |
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
title: Little Bard | |
fields: | |
- | |
handle: text | |
field: | |
sets: | |
button: | |
display: Button | |
fields: | |
- |
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 seo_title == 'custom' }} | |
<title>{{ custom_title }}</title> | |
<meta name="twitter:title" content="{{ custom_title }}" /> | |
<meta property="og:title" content="{{ custom_title }}" /> | |
{{ else }} | |
<title>{{ title }} // {{ site:name }}</title> | |
<meta name="twitter:title" content="{{ title }}" /> | |
<meta property="og:title" content="{{ title }}" /> | |
{{ /if }} |
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
grep -Ril “@mail.ru” . | xargs rm | |
grep -Ril “hot girls” . | xargs rm | |
grep -Ril "д" . | xargs rm |
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
$(function() { | |
$.ajaxSetup({ | |
headers: { 'X-CSRF-TOKEN': $('input[name="_token"]').val() } | |
}); | |
var form = $('.contact-form'); | |
form.submit(function(e) { | |
e.preventDefault(); |
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 {bison:cart_discount} }} | |
<tr> | |
<th colspan="4">Discount:</th> | |
<td class="numeric">-${{ bison:cart_discount }}</td> | |
</tr> | |
{{ endif }} | |
<tr> | |
<th colspan="4">Total:</th> | |
<td class="numeric"><h3>${{ bison:cart_total }}</h3></strong></td> | |
</tr> |
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
.side-image { | |
@include media($large-screen) { | |
@include row(table); | |
&.image-flipped { | |
direction: rtl; | |
.content { | |
direction: ltr; | |
} | |
} |
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
br { | |
display: none; | |
@include media($large-screen) { | |
display: block; | |
} | |
} |
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
{ | |
"custom_sort_order": false, | |
"sort_order": [ | |
"position", | |
"top", | |
"right", | |
"bottom", | |
"left", | |
"z-index", | |
"display", |
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
/* Block Grids | |
========================================================================== */ | |
.block-grid-2 { .block-grid(2); } | |
.block-grid-3 { .block-grid(3); } | |
.block-grid-4 { .block-grid(4); } | |
.block-grid-5 { .block-grid(5); } | |
.block-grid-6 { .block-grid(6); } | |
.block-grid-7 { .block-grid(7); } | |
/* Block Grids Mixins |