List of Exported Colors

This page uses a Hashtag List to show all rows from an exported Google Sheet.  


Processed this Hashtag Markup:
<# start list for google sheet "Colors";
	show 7 rows per page;
#>

<# start header #>
<table class="table table-striped table-hover">
	<thead>
	<tr>
		<th>Color</th>
		<th>Name</th>
		<th>Hex</th>
		<th class="text-right">Red</th>
		<th class="text-right">Green</th>
		<th class="text-right">Blue</th>
	</tr>
	</thead>
<# end header #>

<# start row #>
	<tr>
		<td style="background-color:<# hex #>">&nbsp;</td>
		<td><# name #></td>
		<td class="monospace"><# hex #></td>
		<td class="text-right"><# r #></td>
		<td class="text-right"><# g #></td>
		<td class="text-right"><# b #></td>
	</tr>
<# end row #>

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

<# no results #>
<# redirect to "/lists/purge?land=pager"; #>
<# 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.