This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{<layout}} | |
{{$pageTitle}}Index{{/pageTitle}} | |
{{$content}} | |
<main id="content" role="main" class="group multi-page"> | |
<header class="page-header group"> | |
<div> | |
<h1>{{guideTitle}}</h1> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> | |
<meta content="utf-8" http-equiv="encoding"> | |
<!-- This disables auto detection of phone numbers in some clients. Remove if not needed. --> | |
<meta name="format-detection" content="telephone=no"> | |
<title>Page title</title> | |
</head> | |
<body style="font-family: Helvetica, Arial, sans-serif;font-size: 16px;margin: 0;color:#0b0c0c"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
#back a { | |
display: inline-block; | |
margin-top: 15px; | |
padding-left: 14px; | |
border-bottom: #0b0c0c 1px solid; | |
color: #0b0c0c; | |
text-decoration: none; | |
background: url("http://cl.ly/image/1L2z0O2w0Q14/icon-caret-left.png") no-repeat 0 4px; | |
font-family: "nta", Arial, sans-serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
'07700900456', // mobile | |
'+447700900456', | |
'(+44) 07700900456', | |
'07700 900 456', | |
'07700 900456', | |
'+447700 900456', | |
'01144960573', // sheffield (4 digit area) | |
'+441144960573', | |
'+44114 4960573', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set currentProjectIndex = 0 %} | |
{% set countOfProjects = collections.design.length %} | |
{% for project in collections.design %} | |
{% if project.url == page.url %} | |
{% set currentProjectIndex = loop.index0 %} | |
{% endif %} | |
{% endfor %} | |
{% set previousProjectIndex = currentProjectIndex - 1 %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
===================================================================== | |
arrayToGovukTable | |
Convert an array to form needed for govukTable macro | |
===================================================================== | |
Expects array or nested array. | |
Usage: |