diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 15 | ||||
| -rw-r--r-- | _layouts/post.html | 5 |
2 files changed, 14 insertions, 6 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index d58d069..d8a0846 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,7 +3,20 @@ {% include head.html %} <body> - <div class="topbar"></div> + <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 %} --> diff --git a/_layouts/post.html b/_layouts/post.html index 59b62b1..5205410 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,11 +2,6 @@ layout: default --- -<div class="book-title"> - Programming Models for - <br /> - <span class="dist-comp">Distributed Computing</span> -</div> <div class="author">By {{ page.by }}</div> <article> |
