diff options
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/footer.html | 5 | ||||
-rw-r--r-- | layouts/partials/head.html | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..992a65d --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,5 @@ +<footer id="footer" class="mw7 center mb3"> + <span class="db tc black-60"> + © {{ now.Format "2006" }} {{ with .Site.Params.footer.copyright }}{{ . | safeHTML }}{{ else }}{{ with .Site.Author.name }}{{ . }}{{ else }}{{ with .Site.Title }}{{ . }}{{ end }}{{ end }}{{ end }}. All Rights Reserved + </span> +</footer> diff --git a/layouts/partials/head.html b/layouts/partials/head.html index ddbc6e9..eb2804a 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -20,19 +20,24 @@ display: none; overflow:auto; } + a { + text-decoration: none; + color: #357edd; + } #sidebar a { - text-shadow: 1px 3px 1px rgba(0,0,0,0.9); + text-shadow: 1px 2px 0px rgba(0,0,0,0.9); } .post-header { - text-shadow: 0 2px 1px rgba(0,0,0,0.9); + text-shadow: 1px 2px 1px rgba(0,0,0,0.9); } pre { background: #3f3f3f; color: #dcdcdc; padding: 0.5em;} + </style> <script> function w3_open() { |