You are viewing the source of felocity.com. This serves as a portfolio of sorts, as all the code is out in the open to see (except for config files). Browse around, feel free to ask questions. If you see something horrible, glaring, or otherwise a major security problem, please don't hesitate to contact me.

Pages/SourceBrowser (xml)

<chip:include file="Pages/Macros/Global"/> <chip:component type="Components/SourceViewer/GetParsedSource" as="Source"> <chip:param name="path" value="path" source="request"/> </chip:component> <tal:block tal:define="enable_primary 1; enable_secondary 0; enable_tertiary 0"/> <html metal:use-macro="html"> <head> <title metal:fill-slot="title">Felocity.com Source Browser</title> <tal:block metal:fill-slot="scripts"></tal:block> <tal:block metal:fill-slot="css"></tal:block> </head> <!-- Primary Content --> <tal:block metal:fill-slot="primary content"> <p class="explanation"> You are viewing the source of felocity.com. This serves as a portfolio of sorts, as all the code is out in the open to see (except for config files). Browse around, feel free to ask questions. If you see something horrible, glaring, or otherwise a major security problem, please don't hesitate to contact me. </p> <tal:block tal:condition="not Source"> Source for this file is unavailable. </tal:block> <tal:block tal:condition="Source"> <h1>${Source/path} (${Source/lang})</h1> <p><code tal:attributes="lang Source/lang" tal:content="Source/contents"/></p> <tal:block tal:condition="Source/linkedPaths"> <h2>Files ${Source/path} Links To:</h2> <ul> <li tal:repeat="Path Source/linkedPaths"><a tal:attributes="href url:source path=${Path}">${Path}</a></li> </ul> </tal:block> </tal:block> </tal:block> <!-- Secondary Content --> <tal:block metal:fill-slot="secondary content"> <h1>This</h1> <p> On some level, felocity.com serves as a portfolio piece all its own. You can browse most of the site's source code and see how everything is constructed. </p> </tal:block> <!-- Tertiary Content --> <tal:block metal:fill-slot="tertiary content"> <h1>Work</h1> <p> There's more, but that's a pretty nice swath of the past. The best place to get my whole work history is at my <a href="http://www.linkedin.com/in/jakobheuser" rel="me">LinkedIn Profile</a>. </p> </tal:block> </html>

Files Pages/SourceBrowser Links To: