25 lines
1010 B
HTML
25 lines
1010 B
HTML
{% if page %}
|
|
{% set page_title = page.title %}
|
|
{% elif section %}
|
|
{% set page_title = section.title %}
|
|
{% endif %}
|
|
<title>{% if page_title %}{{ page_title | safe }} | {% endif %}{{ config.title | safe }}</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{# STAGING: keep search engines out. Remove this line at production cutover. #}
|
|
<meta name="robots" content="noindex,nofollow">
|
|
|
|
<meta name="description" content="{{ config.description | safe }}">
|
|
<meta name="author" content="{{ config.extra.practice_name | safe }}">
|
|
|
|
<link rel="stylesheet" href="/fonts/roboto.css">
|
|
<link rel="stylesheet" href="/fonts/montserrat.css">
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/fonts/font-awesome/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="/css/mobile-menu.css">
|
|
<link rel="stylesheet" href="/css/flexslider.css">
|
|
<link rel="stylesheet" href="/main.css">
|