Skip to content

Instantly share code, notes, and snippets.

View samstarling's full-sized avatar

Sam Starling samstarling

View GitHub Profile
@samstarling
samstarling / template-example.html
Created January 3, 2011 22:19
An example of an incredibly simple template.
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1><?= the_title(); ?></h1>
<p><?= the_content(); ?></p>
</body>
</html>