diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-05-05 17:38:13 -0700 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-05-05 17:43:20 -0700 |
commit | 7c8f9108ffddc602de16b0d66210dee001586a59 (patch) | |
tree | 7b114187f12cef0c15dafacf0414feb9d2c3bd46 /templates | |
parent | 18e4dca08782177125d032620499ceab1456b9e3 (diff) | |
download | my_new_personal_website-7c8f9108ffddc602de16b0d66210dee001586a59.tar.xz my_new_personal_website-7c8f9108ffddc602de16b0d66210dee001586a59.zip |
pyblog: implement preview
Also tweaked icons a bit.
Note that this commit doesn't really work: I implemented a "stoppable
HTTP Server" here to be stopped when "mother process" receives
SIGINT (i.e., KeyboardInterrupt), without realizing that all porcesses
get SIGINT. Therefore, the custom server is hardly needed.
See http://git.io/vJ9yA for more information.
(This implementation has some value tought, that's why I'm committing to
keep it in history.)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/template.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/template.html b/templates/template.html index de507642..fe32073c 100644 --- a/templates/template.html +++ b/templates/template.html @@ -36,7 +36,7 @@ $endfor$ <body> <nav> <div style="height:150px; width:100px; text-align:center;"> -<a href="/"><img src="/img/icon.png" height="100" width="100" style="padding: 2px 0;"></a> +<a href="/"><img src="/img/icon-100.png" height="100" width="100" style="padding: 2px 0;"></a> <div style="padding: 1px 0;"><a href="/"><strong>dl? cmplnts?</strong></a></div> <div style="font-size: 9pt;">by <a href="https://github.com/zmwangx" target="_blank">Zhiming Wang</a></div> </div> |