github.com/letsencrypt/boulder@v0.20251208.0/sfe/templates/layout.html (about)

     1  {{define "header"}}
     2  <!DOCTYPE html>
     3  <html lang="en">
     4  <head>
     5      <meta charset="UTF-8">
     6      <meta name="viewport" content="width=device-width, initial-scale=1.0">
     7      <title>Let's Encrypt - Portal</title>
     8      <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
     9      <link rel="stylesheet" href="/static/style.css">
    10  </head>
    11  <body>
    12      <div class="header">
    13          <div class="container">
    14              <img src="/static/logo.svg" alt="Let's Encrypt" id="logo">
    15          </div>
    16      </div>
    17  {{ end }}
    18  
    19  {{ define "footer" }}
    20  <div class="footer">
    21      <div class="container">
    22          <p>
    23              <a href="https://letsencrypt.org">Let's Encrypt</a> is a free, automated, and open certificate authority brought to you by the nonprofit <a href="https://www.isrg.org/">Internet Security Research Group (ISRG)</a>.
    24          </p>
    25      </div>
    26  </div>
    27  </body>
    28  </html>
    29  {{ end }}