Your ROOT_URL in app.ini is https://code.exacti.com.br/ but you are visiting https://git.exacti.com.br/ExacTI/phacil-framework/src/commit/7d0624c01565cbad4144c8b6d2004348d01e86b1/view/default/common/header.twig You should set ROOT_URL correctly, otherwise the web may not work correctly.
A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework

31 lines
867 B

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>{{title}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<base href="{{base}}" />
{% if description %}
<meta name="description" content="{{description}}" />
{% endif %}
{% if keywords %}
<meta name="keywords" content="{{keywords}}" />
{% endif %}
{% if icon %}
<link href="{{icon}}" rel="icon" />
{% endif %}
{% for link in links %}
<link href="{{link.href}}" rel="{{link.rel}}" />
{% endfor %}
{% for style in styles %}
<link rel="{{style.rel}}" type="text/css" href="{{style.href}}" media="{{style.media}}" />
{% endfor %}
{% for script in scripts %}
<script type="text/javascript" src="{{script}}"></script>
{% endfor %}
{% if google_analytics %}
{{google_analytics}}
{% endif %}
</head>
<body>