9c79d05ae6
The Sass file in sass/_praxis_theme.scss had drifted from the live _style.css over the project's life — different line-heights (34/28 vs 24), padding overrides, restructured selectors, and a few sections that the SCSS parser couldn't accept anyway (CSS // line-comments, missing semicolons inherited from the original hand-written CSS). For Phase 1 visual parity the correct source of truth is the live CSS, not a re-edited copy. Drop compile_sass, ship the live _style.css as /css/praxis.css straight from static/, and point base.html at it. This restores the live vertical rhythm (paragraph spacing, banner padding) that had been subtly off.
24 lines
1.2 KiB
HTML
24 lines
1.2 KiB
HTML
{%- set is_home = (section and section.path == '/') -%}
|
|
{%- if page %}{% set page_title = page.title %}{% elif not is_home %}{% set page_title = section.title %}{% endif -%}
|
|
{%- set site_title = config.title ~ " - " ~ config.extra.doctors -%}
|
|
<title>{% if page_title %}{{ page_title | safe }} | {% endif %}{{ site_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="keywords" content="{{ config.extra.keywords | 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="/css/praxis.css">
|