View kirby_loop.php
<?php snippet('header') ?> | |
<?php foreach($page->children()->flip() as $article): ?> | |
<?php if($article->template() == 'link'): ?> | |
<!-- link html --> | |
<?php elseif($article->template() == 'article'): ?> |
View gist:6210300
setTimeout('_gaq.push([\'_trackEvent\', \'NoBounce\', \'Over 5 seconds\'])',5000); |
View from.php
<?php | |
// get a page | |
$editpage = $pages->get("/editme/"); | |
$ignorefields = array("isOld","language_published"); | |
$form = $modules->get("InputfieldForm"); | |
$form->method = 'post'; | |
$form->action = './'; |
View dabblet.css
.zweispaltig { | |
column-count: 2; | |
column-gap: 20px; | |
} |
View verlinkung.html
<div class="grid_4"> | |
<div id="port_bild"> | |
<a href="thomas_sankara.html" name="seite2"> | |
<img src="img/portfolio/thomas_sankara/thomas_sankara_thumb.jpg" style="border:1px solid #666;"> | |
<span><p>Thomas Sankara Portrait<br>- Artwork</p></span> | |
</a> | |
</div> | |
</div> |
View kirby_loop.php
<?php snippet('header') ?> | |
<?php foreach($page->children()->flip() as $article): ?> | |
<?php if($article->template() == 'link'): ?> | |
<!-- link html --> | |
<?php elseif($article->template() == 'article'): ?> |
View Gistson.php
<?php | |
/* | |
Plugin Name: Gistson - Embedded Gist WP Plugin | |
Plugin URI: http://arin.me/blog/tag/gistson | |
Description: Use a shortcode [gist id="12345"] to embed A Gist from http://gist.github.com into your blog | |
Version: 0.1 | |
Author: Arin Sarkissian | |
Author URI: http://arin.me | |
Copyright 2009 Arin Sarkissian |
View gist:1012421
<?php include("datei.php"); ?> |
View gist:1012418
<?php | |
$an="Sie befinden sind hier: "; | |
$home="http://www.drweb.de/"; // Hier Ihre Domain | |
$pie=explode("/","$_SERVER[PHP_SELF]"); | |
$tr=" > "; // Alternativ: ':', '/' | |
$b=count($pie); | |
echo $an."<a href=\"".$home."\">Startseite</a>"; | |
// Alternativ: 'Home', 'Start' | |
for($a=1;$a<$b-1;$a ){ | |
$ta=$ta.$pie[$a]."/"; |