CI: Add silent prescan SonarCloud job
[nonrtric/plt/sme.git] / provider / view / base.html
1 <!--
2    ========================LICENSE_START=================================
3    O-RAN-SC
4    %%
5    Copyright (C) 2023: Nordix Foundation
6    %%
7    Licensed under the Apache License, Version 2.0 (the "License");
8    you may not use this file except in compliance with the License.
9    You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13    Unless required by applicable law or agreed to in writing, software
14    distributed under the License is distributed on an "AS IS" BASIS,
15    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16    See the License for the specific language governing permissions and
17    limitations under the License.
18    ========================LICENSE_END===================================
19 -->
20 {{define "base"}}
21   <!DOCTYPE html>
22   <html lang="en">
23     <head>
24         <!-- Required meta tags -->
25         <meta charset="utf-8">
26         <meta name="viewport" content="width=device-width, initial-scale=1">
27
28         <!-- CSS -->
29         <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
30         <link rel="stylesheet"  type="text/css" href="./css/style.css">
31         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
32         <script language="JavaScript" type="text/javascript" src="./js/script.js"></script>
33
34         <title>{{template "title" .}}</title>
35     </head>
36     <body>
37         <main>
38         <div class="container py-4">
39             <header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom text-dark">
40                 <div class="col-4 text-center">
41                     <a class="text-body-emphasis mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none" href="/">
42                         <span class="fs-2">CAPIF API Provider Domain</span>
43                     </a>
44                   </div>
45             </header>
46             {{template "body" .}}
47         </div>
48         </main>
49         <!-- JS -->
50         <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
51     </body>
52   </html>
53 {{end}}