aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: d8a084686c989b6ac64c0cb745b0925b789df7e0 (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
<!DOCTYPE html>
<html lang="en">

  {% include head.html %}
<body>
  <div class="topbar">
    <div class="logo-wrap">
      <!-- <div class="circle-logo"></div> -->
      <svg class="logo" width="100" height="100">
        <circle cx="50" cy="50" r="35" stroke-width="6" stroke="#fff" fill="#b3c7cf"/>
        <circle cx="50" cy="50" r="20" fill="#92adb9"/>
        <circle cx="50" cy="50" r="14" fill="#7499AA"/>
      </svg>
      <div class="book-title">
        <div class="prog-mod">Programming Models for</div>
        <div class="dist-comp">Distributed Computing</div>
      </div>
    </div>
  </div>
  <div class="body-wrap">
    <div class="container">
      <!-- {% include header.html %} -->

      <div class="page-content">
        <div class="wrapper">
          {{ content }}
        </div>
      </div>

      {% include footer.html %}
    </div>
  </div>
</body>

</html>