Blame view

resources/farm-index.html 2.08 KB
be7b95fc   hitier   PDC-Farm index files
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
74
75
76
77
<!doctype html>
<html lang="fr">
<head>
  <meta charset="utf-8">
  <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
  <link href="pdc-ico.svg" rel="icon"/>
  <link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
        integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" rel="stylesheet">
  <title> PDC Farm </title>
  <style>

    /*
 * Globals
 */

    html,
    body {
      height: 100%;
      /*background-color: #333;*/
    }

    body {

      display: flex;
      align-items: center;
      background-color: #f5f5f5;
    }

    .cover-container {
      width: 100%;
      max-width: 330px;
      padding: 15px;
      margin-top: 10em;
    }


    /*.cover {*/
    /*  padding: 0 1.5rem;*/
    /*}*/


    .cover .btn-lg {
      padding: .75rem 1.25rem;
      font-weight: 700;
    }

    .btn-lg {
      display: block;
      width: 100%;
      margin: 10px;
      color: #fff;
      background-color: #343a40;
      border-color: #343a40;

      padding: .5rem 1rem;
      font-size: 1.25rem;
      line-height: 1.5;
      border-radius: .3rem;
    }

    /*
     * Footer
     */
    /*.mastfoot {*/
    /*  color: rgba(255, 255, 255, .5);*/
    /*}*/
  </style>
</head>
<body class="text-center">

  <div class="cover-container d-flex h-100 p-3 mx-auto flex-column">

    <main class="inner cover" role="main">
      <img class="mb-4" height="72" src="pdc-farm.svg" width="72">
      <h1 class="h3 font-weight-normal my-5">Plan de Charge</h1>

      <p class="lead">
1cbf6f8f   hitier   Update farm html ...
78
        Les différentes instances de l'application hébergées à l'Irap:
be7b95fc   hitier   PDC-Farm index files
79
80
      </p>
      <p class="lead">
1cbf6f8f   hitier   Update farm html ...
81
        <a class="btn btn-lg btn-secondary" href="https://plan-de-charges.irap.omp.eu/public/">Public</a>
be7b95fc   hitier   PDC-Farm index files
82
83
84
85
86
87
88
89
90
91
92
93
94
95
        <a class="btn btn-lg btn-secondary" href="https://plan-de-charges.irap.omp.eu/irap/">Irap</a>
      </p>
    </main>

    <footer class="mt-5 mb-3 text-muted">
      <p class="text-muted text-center">
        Plan de Charge<br/>
        © 2021 IRAP
      </p>
    </footer>

  </div>
</body>
</html>