Skip to content

Commit

Permalink
Version 4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jshah4517 authored Jun 27, 2022
1 parent 0d6f792 commit bbf26f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<html>

<head>
{% set title = block('title') is defined ? block('title') : Lang.get('general.support_portal') %}
<title>{{ company }} - {{ title }}</title>
{% set title = block('title') is defined ? block('title') : Lang.get('general.support_portal')|e %}
<title>{{ company }} - {{ title|raw }}</title>

{% block meta %}{% endblock %}
<meta property="og:title" content="{{ title }}" />
<meta property="og:title" content="{{ title|raw }}" />
<meta property="og:image" content="{{ get_logo() }}" />

{% include 'frontend.' ~ template ~ '.head_common' %}
Expand Down Expand Up @@ -118,7 +118,7 @@

<div class="sp-px-6 sp-mb-4 sp-leading-none xs:sp-px-0 xs:sp-mb-6 lg:sp-mb-8">
<h1 class="sp-hidden md:sp-block sp-mb-3 sp-text-3xl sp-font-normal print:sp-block">
{{ title }}
{{ title|raw }}
</h1>

<div class="sp-breadcrumb md:sp-text-sm print:sp-mb-6">
Expand Down

0 comments on commit bbf26f9

Please sign in to comment.