Skip to content

Instantly share code, notes, and snippets.

@bvanvugt
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bvanvugt/8497cbf3c9b751c1e8e9 to your computer and use it in GitHub Desktop.
Save bvanvugt/8497cbf3c9b751c1e8e9 to your computer and use it in GitHub Desktop.

Template:

<html>
    <head>
        {% snippet common_style %}
    </head>
    <body>
        {% snippet common_header %}
    
        <table width=650>
            <tr>
                <td>Template content goes here</td>
            </tr>
        </table>
    
        {% snippet common_footer %}
    </body>
</html>

Common Style

<style>
    body { color: #444444 }
</style>

Common Header

<table width=650>
    <tr>
        <td>Common Header Content Here</td>
    </tr>
</table>

Common Footer

<table width=650>
    <tr>
        <td>Common Footer Content Here</td>
    </tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment