Skip to content

Instantly share code, notes, and snippets.

View tysongach's full-sized avatar
🚢
Slow is smooth, smooth is fast

Tyson Gach tysongach

🚢
Slow is smooth, smooth is fast
  • Nashville, TN, USA
  • 04:04 (UTC -05:00)
  • LinkedIn in/tysongach
View GitHub Profile
@tysongach
tysongach / Sublime Text Setup.md
Last active January 2, 2016 12:18 — forked from davatron5000/Sublime Text Setup.md
My setup for Sublime Text. Supports Sublime Text 3
@tysongach
tysongach / ranged-pagination.php
Last active December 13, 2015 17:28 — forked from bastianallgeier/pagination.php
Pagination for Kirby with a link to each page. Utilizes PHP short tags.
<?
$list = $page->children()->paginate(10);
$pagination = $list->pagination();
?>
<ul>
<? foreach($list as $item): ?>
<li><!-- item html --></li>