source: inc/head.php

Last change on this file was 0791611, checked in by sstalevska <sara.stalevska@…>, 2 years ago

Push the entire project.

  • Property mode set to 100644
File size: 577 bytes
Line 
1<?php
2/**
3 * The initial part of the HTML document, included in multiple pages.
4 */
5?><!DOCTYPE html>
6<html lang="en" class="min-vh-100 bg-light">
7<head>
8 <meta charset="UTF-8">
9 <meta http-equiv="X-UA-Compatible" content="IE=edge">
10 <meta name="viewport" content="width=device-width, initial-scale=1.0">
11 <title><?= $pageTitle ?> | WeService</title>
12 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
13</head>
14<body>
Note: See TracBrowser for help on using the repository browser.