diff options
author | 2021-12-27 15:58:27 +0100 | |
---|---|---|
committer | 2021-12-27 15:58:27 +0100 | |
commit | bd13286d87e6273db0f55e8fd95ba3730171def4 (patch) | |
tree | e577625a7afbe553925c8c99e2c50ae302a32362 /master.rhtml | |
download | website-bd13286d87e6273db0f55e8fd95ba3730171def4.tar.gz website-bd13286d87e6273db0f55e8fd95ba3730171def4.zip |
Initial commit
Diffstat (limited to 'master.rhtml')
-rw-r--r-- | master.rhtml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/master.rhtml b/master.rhtml new file mode 100644 index 0000000..84f68d7 --- /dev/null +++ b/master.rhtml @@ -0,0 +1,49 @@ +<!-- document_date: --> +<!DOCTYPE html> +<html lang="en"> + <head> + <base href="https://alessandroiezzi.it/"> + + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link rel="icon" href="/favicon.ico"> + + <title>Alessandro Iezzi - IT Consulting - <%= @title %></title> + + <!-- Bootstrap core CSS --> + <link href="assets/bootstrap/v5/css/bootstrap.min.css" rel="stylesheet"> + + <!-- Custom styles for this template --> + <link href="/assets/css/theme.css" rel="stylesheet"> + <link href="/assets/css/custom.css" rel="stylesheet"> + </head> + <body> + <%= render "navigation.rhtml.inc" %> + <div class="container" style="padding-bottom: 20pt; padding-top: 20pt"> + <%= render @pageFileName %> + </div> + + <footer class="footer"> + <div class="container"> + <div class="row"> + <div class="col-md-4"> + <p class="text-muted">© 2016 - 2021 Alessandro Iezzi</p> + <p class="text-muted">P. IVA: 02509650699</p> + <p class="text-muted"> + <a href="https://alessandroiezzi.it/weblabels.html" + rel="jslicense">Informazioni sulle licenze JavaScript</a> + </p> + </div> + <div class="col-md-8"> + <p class="text-muted"><i>Questo sito internet non fa uso né di + cookie né di tracker</i></p> + <p class="text-muted">Contatti: <code style="color: #bbb">info CHIOCCIOLA alessandroiezzi PUNTO it</code></p> + </div> + </div> + </div> + </footer> + + <script src="assets/bootstrap/v5/js/bootstrap.min.js"></script> + </body> +</html> |