aboutsummaryrefslogtreecommitdiff
path: root/footer.sh
blob: 9ae32d6d1cf6a6bb5ea1f5981bfe76f2ff841ff5 (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
#!/bin/bash

cat <<FOOTER
<style>
  footer {
    text-align: center;
  }

  footer h1 {
    text-align: left;
  }

  #footer-command-prompt {
    padding-top: 10px;
  }

  #footer-command-prompt h1 {
    padding: 0px;
    margin: 0px;
  }

  #footer-command-prompt .after-prompt {
    margin-top: 10px;
  }
</style>

<footer>
  <div class="separator-wrap"><div class="separator"></div></div>
  <p>
    Servidor HTTP: $SERVER_SOFTWARE <br />
    Gateway: $GATEWAY_INTERFACE <br />
    Pré-processador HTML: GNU Bash $BASH_VERSION <br />
    Este website também funciona com javascript desabilitado :3
  </p>

  <div id="footer-command-prompt">
    <h1 class="header-title">$ <span class="text"></span><span class="cursor">&ensp;</span></h1>

    <div class="after-prompt">&ensp;</div>
  </div>
</footer>
FOOTER