From 1ae45974addb9d64f6db608509d3c84736d9e387 Mon Sep 17 00:00:00 2001 From: Dooho Yi Date: Tue, 5 May 2020 05:18:57 +0900 Subject: [PATCH] =?UTF-8?q?+=20=E2=80=98content/posts/notes/20200505T05000?= =?UTF-8?q?1+0900=5Fpalo=20alto/index.rst=E2=80=99=20/=20=E2=80=98theme/te?= =?UTF-8?q?mplates/article.html=E2=80=99=20/=20=E2=80=98theme/templates/ba?= =?UTF-8?q?se.html=E2=80=99=20/=20=E2=80=98theme/templates/category.html?= =?UTF-8?q?=E2=80=99=20/=20=E2=80=98theme/templates/index.html=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../20200505T050001+0900_palo alto/index.rst | 8 ++ theme/templates/article.html | 38 +++---- theme/templates/base.html | 105 +++++++----------- theme/templates/category.html | 79 +++---------- theme/templates/index.html | 88 +++------------ 5 files changed, 92 insertions(+), 226 deletions(-) create mode 100644 content/posts/notes/20200505T050001+0900_palo alto/index.rst diff --git a/content/posts/notes/20200505T050001+0900_palo alto/index.rst b/content/posts/notes/20200505T050001+0900_palo alto/index.rst new file mode 100644 index 0000000..494ccd9 --- /dev/null +++ b/content/posts/notes/20200505T050001+0900_palo alto/index.rst @@ -0,0 +1,8 @@ +어깨가 아파서 좀 놀랐다. surprise. +잠을 잘 자야지. 운동도 하고. +코로나 바이러스 때문만이 아니라, 건강이 지속적으로 위협을 받는다. +올해 한국나이 40. 만 39세. +40이 됐다고는 하지만, 이렇게 여기저기 안좋은 것은, 확실히 좀 지나치긴 한 것 같다. +뭔가, 어디 하나 아플때마다, 인터넷 많이 뒤적이고, 텔레그램 메세지로 이것저것 많이 찾은 것들을 남겨놓는데, +그런 것들을, (반복되는 것들도 있고..) 모아서, 실제로 운동하는 계획이라던가, 매일매일 체크할 수 있는 메모로 남기고, 기억하게 될 수 있게 해야 하는 것 같다. +지금은, 그냥 흘러가 버리기만 하고, 또 새로운 곳이 아프고, 반복된다. diff --git a/theme/templates/article.html b/theme/templates/article.html index f952131..53d32c4 100644 --- a/theme/templates/article.html +++ b/theme/templates/article.html @@ -1,29 +1,17 @@ {% extends "base.html" %} {% block title %}{{ super() }} : {{ article.title }}{% endblock %} -{% block content %} -
-

{#{{ SITENAME }}#} {% if SITESUBTITLE %} {{ SITESUBTITLE }}{% endif %} {#:#} - {{ article.title }}

- {% if not HIDE_DATE %}{% endif %} -
-
+{% block content %} + +
{{ article.content }} - {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %} -

Comments

-
- - - {% endif %} -
+ + {% if not HIDE_DATE %} + + {% endif %} {% endblock %} diff --git a/theme/templates/base.html b/theme/templates/base.html index 46bceb7..590a54f 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -1,82 +1,57 @@ - - {% block title %}{{ SITENAME }}{%endblock%} - - - - - - + time { + font-size: 0.65em; + } + + - + -
+
- -
- {{ SITENAME }} -
-
- - {% for category, articles in categories %} - - {% if category.name == 'notes' %} - - {% for article in articles %} - - - -
- {{ article.content }} + +
+ {% block content-title %}{{ SITENAME }}{% endblock %}
+
- {% if not HIDE_DATE %} - - {% endif %} + {% block content %} + {% endblock %} - {% endfor %} +
- {% endif %} + - {% endfor %} - -
- - - - + diff --git a/theme/templates/category.html b/theme/templates/category.html index 253cf59..a75086f 100644 --- a/theme/templates/category.html +++ b/theme/templates/category.html @@ -1,74 +1,25 @@ - - +{% extends "base.html" %} +{% block content-title %}{{ SITENAME }} - {{ category }}{% endblock %} +{% block content %} - - {% block title %}{{ SITENAME }}{%endblock%} - - - - - - - - - -
- - -
- {{ SITENAME }} -
+
- {% for article in articles %} +
+ {{ article.content }} +
- - -
- {{ article.content }} -
- - {% if not HIDE_DATE %} + {% if not HIDE_DATE %} - {% endif %} + {% endif %} - {% endfor %} +{% endfor %} -
- - - - - - +{% endblock %} diff --git a/theme/templates/index.html b/theme/templates/index.html index 46bceb7..31983ff 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -1,82 +1,26 @@ - - +{% extends "base.html" %} +{% block content %} - - {% block title %}{{ SITENAME }}{%endblock%} - - - - - - - - - -
- - -
- {{ SITENAME }} + {% for article in articles %} + +
+ {{ article.content }}
- - - {% for category, articles in categories %} - - {% if category.name == 'notes' %} - - {% for article in articles %} - - - -
- {{ article.content }} -
- - {% if not HIDE_DATE %} + {% if not HIDE_DATE %} - {% endif %} - - {% endfor %} - {% endif %} - {% endfor %} -
+ {% endif %} + {% endfor %} - - - - - +{% endblock %}