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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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
// import gridle | |
@import "../../bower_components/gridle/sass/gridle/gridle"; | |
// setting up the grid | |
$settings : ( | |
context : 24, // number of columns in your grid | |
column-width : null, // by default it's percentage based depending on the context but you can specify a column width yourself | |
gutter-width : 20px, // size of the gutters | |
gutter-height : 0, // size of top and bottom gutters |
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
<div class="container"> | |
<div class="row"> | |
<div class="gr-8"> | |
foo | |
</div> | |
<div class="gr-8"> | |
foo | |
</div> | |
<div class="gr-8"> | |
foo |
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 | |
namespace Statamic\Addons\PageContent; | |
use Statamic\Extend\Controller; | |
use Statamic\API\Page; | |
class PageContentController extends Controller | |
{ | |
/** |
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 | |
namespace Statamic\Addons\Instagram; | |
use Statamic\Extend\Controller; | |
use Statamic\API\Entry; | |
use Statamic\API\Parse; | |
use Statamic\API\File; | |
class InstagramController extends Controller |
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 | |
namespace Statamic\Addons\AssetsOrganized; | |
use Statamic\Addons\Assets\AssetsFieldtype; | |
use Statamic\API\Helper; | |
class AssetsOrganizedFieldtype extends AssetsFieldtype | |
{ | |
public $category = ['media', 'relationship']; |
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 | |
namespace Statamic\Addons\AssetsOrganized; | |
use Statamic\Addons\Assets\AssetsFieldtype; | |
use Statamic\Extend\Fieldtype; | |
use Statamic\API\Helper; | |
use Statamic\API\Asset; | |
use Statamic\API\AssetContainer; | |
use Statamic\API\Folder; |
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
// DEBUG | |
.grid { | |
position: fixed; | |
width: 100%; | |
top: 0; | |
left: 0; | |
pointer-events: none; | |
z-index: 100000; | |
display: block; |
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
{"lastUpload":"2020-05-29T12:18:52.703Z","extensionVersion":"v3.4.3"} |
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
import React, {Fragment} from "react"; | |
export default class GridDebug extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
gridVisible: false | |
}; |
OlderNewer