Skip to content

Instantly share code, notes, and snippets.

@dannysmith
Created July 9, 2013 16:45
Show Gist options
  • Select an option

  • Save dannysmith/5959019 to your computer and use it in GitHub Desktop.

Select an option

Save dannysmith/5959019 to your computer and use it in GitHub Desktop.
<h2>Homepage Settings</h2>
<label for="home-message">Message</label>
<textarea id="home-message" name="home-message" value="" />
<br /><br /><br />
<h2>Generic SEO</h2>
<p>The following values will be used for your pages titles and meta descriptions:</p>
<table>
<thead>
<tr>
<th>Page Type</th>
<th>Title</th>
<th>Description</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>Product Page</td>
<td><kbd>Buy {{product.title}}</kbd> from Le Loup Eastbourne</td>
<td><kbd>{{product.description}}</kbd></td>
<td>The product description will be trimmed to 150 characters. If the product is on sale, "Buy" will be replaced with "Sale:".</td>
</tr>
<tr>
<td>Collection Page</td>
<td><kbd>{{collection.title}}</kbd> from Le Loup Eastbourne</td>
<td><kbd>{{ collection.description}}</kbd></td>
<td></td>
</tr>
<tr>
<td>Normal Pages</td>
<td><kbd>{{page.title}}</kbd> - Le Loup Eastbourne</td>
<td rowspan="2" ><textarea type="text" id="other-pages-description" name="other-pages-description" value="" /></td>
<td></td>
</tr>
<tr>
<td>Any other pages</td>
<td><input type="text" id="other-pages-title" name="other-pages-title" value=""/></td>
<td>This includes the home page</td>
</tr>
</tbody>
</table>
<br /><br />
<label for="meta-keywords">Meta Keywords</label>
<textarea id="meta-keywords" name="meta-keywords" value="" />
<br /><br /><br />
<h2>Opening Times</h2>
<label for="opening-active">Show Opening Times?</label><input type="checkbox" name="opening-active" id="opening-active" />
<br />
<table>
<tbody>
<tr>
<td><label for="opening-mon">Monday</label></td>
<td><input type="text" id="opening-mon" name="opening-mon"/></td>
</tr>
<tr>
<td><label for="opening-tue">Tuesday</label></td>
<td><input type="text" id="opening-tue" name="opening-tue"/></td>
</tr>
<tr>
<td><label for="opening-wed">Wednesday</label></td>
<td><input type="text" id="opening-wed" name="opening-wed"/></td>
</tr>
<tr>
<td><label for="opening-thu">Thursday</label></td>
<td><input type="text" id="opening-thu" name="opening-thu"/></td>
</tr>
<tr>
<td><label for="opening-fri">Friday</label></td>
<td><input type="text" id="opening-fri" name="opening-fri"/></td>
</tr>
<tr>
<td><label for="opening-sat"><strong>Saturday</strong></label></td>
<td><input type="text" id="opening-sat" name="opening-sat"/></td>
</tr>
<tr>
<td><label for="opening-sun"><strong>Sunday</strong></label></td>
<td><input type="text" id="opening-sun" name="opening-sun"/></td>
</tr>
</tbody>
</table>
<br />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment