summaryrefslogtreecommitdiff
path: root/template.html
blob: 865a1e2de9077da37df9764c832dc40838b88e0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="fr">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>{TITLE} - Quatuor Bellefeuille</title>
    <link rel="icon" href="images/favicon.svg">
    <link rel="stylesheet" href="stylesheets/commun.css">
{STYLESHEETS}
    <link rel="preconnect" href="https://fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@1,500&display=swap" rel="stylesheet">
    <link rel="alternate" type="application/rss+xml" href="feed.xml">
  </head>
  <body>
    <header class="banner">
      <a href="index.html">
        <img src="images/logo.svg"
             alt="logo">
        <h1>Quatuor Bellefeuille</h1>
      </a>
    </header>

    <header class="menu">
      <nav>
        <ol>
          <li class="dropdown"><a href="quatuor.html">le quatuor</a>
            <ul>
              <li><a href="sophie.html">Sophie</a></li>
              <li><a href="david.html">David</a></li>
              <li><a href="hervé.html">Hervé</a></li>
              <li><a href="enguerrand.html">Enguerrand</a></li>
            </ul>
          </li>
          <li><a href="actualités.html">actualités</a></li>
          <li><a href="programmes.html">programmes</a></li>
          <li><a href="galerie.html">galerie</a></li>
        </ol>
      </nav>
    </header>

{MAIN}

    <footer class="social">
      <a class="lang" href="">
        EN
      </a>
      <a href="https://www.facebook.com/quatuorbellefeuille/"
         target="_blank" rel="noreferrer noopener">
        <img src="images/facebook-logo.svg">
      </a>
      <a href="https://www.instagram.com/quatuor.bellefeuille/"
         target="_blank" rel="noreferrer noopener">
        <img src="images/instagram-logo.svg">
      </a>
      <a href=""
         target="_blank" rel="noreferrer noopener">
        <img src="images/youtube-logo.svg">
      </a>
      <a class="contact" href="contact.html">
        contact
      </a>
    </footer>

    <footer class="legal">
      <p>
        Mentions légales
        - Icônes adaptées de : <a href="https://feathericons.com">Feather</a> ; <a href="https://www.freepik.com" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>
        - Plan du site
      </p>
    </footer>
  </body>
</html>