diff options
Diffstat (limited to '')
| -rw-r--r-- | css/master.css | 12 | ||||
| -rw-r--r-- | docker-compose.yaml | 2 | ||||
| -rw-r--r-- | views/index.ejs | 7 | 
3 files changed, 18 insertions, 3 deletions
| diff --git a/css/master.css b/css/master.css index fd79a28..8b2e1fc 100644 --- a/css/master.css +++ b/css/master.css @@ -41,3 +41,15 @@ a {    color: #005f87;    text-decoration: none;  } + +hr { +  color: #005f87; +} + +.left-footer { +  float: left; +} + +.right-footer { +  float: right; +} diff --git a/docker-compose.yaml b/docker-compose.yaml index 8eb2079..5f3e217 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -8,7 +8,7 @@ services:        - webnet      restart: unless-stopped      ports: -      - "19009:9000" +      - "9000:9000"      volumes:        - /etc/letsencrypt/archive/blog.terminaldweller.com/:/certs/      cap_drop: diff --git a/views/index.ejs b/views/index.ejs index 7ce83a8..4679e4a 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -10,8 +10,11 @@      <script>0</script>      <div class="article">      <%- data.blogHttp %> -    <a href="/about">About</a> -    <a href="/archive">Archive</a> +    <br/> +    <hr/> +    <br/> +    <a href="/archive" class="left-footer">Archive</a> +    <a href="/about" class="right-footer">About</a>      </div>    </body>  </html> | 
