Skip to content

Instantly share code, notes, and snippets.

@aschiwi
aschiwi / gist:5856988
Created June 25, 2013 08:50
Contents of your node
<div id="accordion">
<h3><a href="#titel1">Deine Überschrift</a></h3>
<div>Dein aufgeklappter Text</div>
<h3><a href="#titel2">Deine zweite Überschrift</a></h3>
<div>Dein aufgeklappter Text</div>
</div>
@aschiwi
aschiwi / gist:5856993
Created June 25, 2013 08:51
this goes in your theme's template.php
<?php
/**
* Override variables used in page.tpl.php.
*/
function YOURTHEMENAME_preprocess_page(&$vars) {
// Adds jquery accordion library so we can use it in our site.
drupal_add_library('system', 'ui.accordion');
}
@aschiwi
aschiwi / 0_reuse_code.js
Last active August 29, 2015 14:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console