List with Timezone Adjustments

This page adjusts a Created On value from a List to apply the current Session Timezone.  
Created On Reformatted then
Adjusted to Timezone
Adjusted to Timezone
then Reformatted
2020-02-12 03:44:56 02/11/2020 10:44 PM 02/11/2020 10:44 PM

Note:  Hashtag Markup is shown below <# in bold #>.   The value generated by processing the Hashtag Markup, and applying any Variable Contexts, is injected into this HTML page after the ⇒ symbol.  
<#[session.timezone]#> ⇒ America/New_York


Processing this Hashtag Markup:
<# start list for colors; 
	limit 1;
#>

<# start header #>
<table class="table table-striped table-hover">
	<thead>
	<tr>
		<th>Created On</th>
		<th>Reformatted then<br>Adjusted to Timezone</th>
		<th>Adjusted to Timezone<br>then Reformatted</th>
	</tr>
	</thead>
<# end header #>

<# start row #>
	<tr>
		<td><# created_on #></td>
		<td><# created_on as date "M/D/Y h:mm A" as timezone #></td>
		<td><# created_on as timezone as date "M/D/Y h:mm A" #></td>
	</tr>
<# end row #>

<# start footer #>
</table>
<# end footer #>

<# no results #>
<# redirect to "/lists/purge?land=timezone"; #>
<# end no results #>

<# end list #>

The Hashtag Markup Language provides List Templates to process a series of Records.  

The examples in this section cover the various List Directives, and demonstrate the capabilities of Hashtag Markup in List Templates.