Files
praxis-page/templates/partials/head.html
T
Brummel 0b551d79da fix(css): drop only flexslider.css, keep its JS
Surgical follow-up to the previous revert. The home-carousel indicator
dots drift because flexslider.css adds `.carousel li { margin-right: 5px }`
which bleeds into Bootstrap's carousel-indicators li. Bootstrap's
.active override removes margin on the active dot, but the inactive
keeps that 5px right margin — so when the inactive sits on the left
(slide 2 active), it pushes the active dot ~4px to the right.

The previous attempt also removed jquery.flexslider-min.js, which
empirically broke the hero/team carousels (the JS load seems to
participate in Bootstrap's data-ride auto-init timing on this custom
build). Keep the JS, drop only the CSS link plus the static file. Also
remove the now-superseded stage tweak at the bottom of praxis.css.
2026-05-21 11:43:58 +02:00

23 lines
1.1 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/praxis.css">