{% for list in podlove.lists({slug: "meta"}) %}
<h1><a href="{{ list.url }}">{{ list.title }}</a></h1>
<h2>{{ list.subtitle }}</h2>
<p>
Sabbel: {{ list.description }}
</p>
<ul>
{% for episode in list.episodes({limit: 5}) %}
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
#!/bin/bash | |
set -e | |
show_help() { | |
cat << EOF | |
Usage: ${0##*/} [-u USER] [-p PASS] [-P PORT] [-H HOST] [DATABASE] | |
${0##*/} -h | |
Open a standard connection in Sequel PRO. |
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 | |
$some_var = 'WordPress'; | |
$string = 'This is my text and ' . $some_var . ' is the best publishing System in the World'; |