+ ‘content/posts/notes/20200505T050001+0900_palo alto/index.rst’
/ ‘theme/templates/article.html’ / ‘theme/templates/base.html’ / ‘theme/templates/category.html’ / ‘theme/templates/index.html’
This commit is contained in:
parent
fefc074ce0
commit
1ae45974ad
5 changed files with 92 additions and 226 deletions
|
|
@ -0,0 +1,8 @@
|
|||
어깨가 아파서 좀 놀랐다. surprise.
|
||||
잠을 잘 자야지. 운동도 하고.
|
||||
코로나 바이러스 때문만이 아니라, 건강이 지속적으로 위협을 받는다.
|
||||
올해 한국나이 40. 만 39세.
|
||||
40이 됐다고는 하지만, 이렇게 여기저기 안좋은 것은, 확실히 좀 지나치긴 한 것 같다.
|
||||
뭔가, 어디 하나 아플때마다, 인터넷 많이 뒤적이고, 텔레그램 메세지로 이것저것 많이 찾은 것들을 남겨놓는데,
|
||||
그런 것들을, (반복되는 것들도 있고..) 모아서, 실제로 운동하는 계획이라던가, 매일매일 체크할 수 있는 메모로 남기고, 기억하게 될 수 있게 해야 하는 것 같다.
|
||||
지금은, 그냥 흘러가 버리기만 하고, 또 새로운 곳이 아프고, 반복된다.
|
||||
|
|
@ -1,29 +1,17 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}{{ super() }} : {{ article.title }}{% endblock %}
|
||||
{% block content %}
|
||||
<header>
|
||||
<h1><a href="{{ SITEURL }}" id="site-title"> {#{{ SITENAME }}#} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1>
|
||||
{% if not HIDE_DATE %}<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>{% endif %}
|
||||
</header>
|
||||
<article>
|
||||
{% block content %}
|
||||
<article class="title">
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" class="db b pb2 o-50">
|
||||
{{ article.title }}
|
||||
</a>
|
||||
</article>
|
||||
<div>
|
||||
{{ article.content }}
|
||||
{% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}
|
||||
<h2>Comments</h2>
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = '{{ DISQUS_SITENAME }}';
|
||||
var disqus_identifier = '{{ article.url }}';
|
||||
var disqus_url = '{{ SITEURL }}/{{ article.url }}';
|
||||
(function() {
|
||||
var dsq = document.createElement('script');
|
||||
dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] ||
|
||||
document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the comments.</noscript>
|
||||
{% endif %}
|
||||
</article>
|
||||
</div>
|
||||
{% if not HIDE_DATE %}
|
||||
<time class="db w-100 tr pb4 o-30" datetime="{{ article.date.isoformat() }}">
|
||||
{{ article.date.isoformat() }}
|
||||
</time>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
|
|
|||
|
|
@ -1,82 +1,57 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/tachyons.min.css" type="text/css" />
|
||||
<script type="text/javascript" src="{{ SITEURL }}/theme/js/jquery-3.5.0.min.js"></script>
|
||||
<style>
|
||||
body {
|
||||
font: 0.75em/1.5 AppleGothic, Sans-serif;
|
||||
}
|
||||
<head>
|
||||
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/tachyons.min.css" type="text/css" />
|
||||
<script type="text/javascript" src="{{ SITEURL }}/theme/js/jquery-3.5.0.min.js"></script>
|
||||
<style>
|
||||
body {
|
||||
font: 0.75em/1.5 AppleGothic, Sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
article.title {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
article.title {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
time {
|
||||
font-size: 0.65em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
time {
|
||||
font-size: 0.65em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<body>
|
||||
|
||||
<div style="margin: 1em;">
|
||||
<div style="margin: 1em;">
|
||||
|
||||
<a class="w-100 black o-10 db pb5" href="{{ SITEURL }} " title="title">
|
||||
<div class="b black" style="font-size: 3.6em;">
|
||||
{{ SITENAME }}
|
||||
</div>
|
||||
</a>
|
||||
|
||||
{% for category, articles in categories %}
|
||||
|
||||
{% if category.name == 'notes' %}
|
||||
|
||||
{% for article in articles %}
|
||||
|
||||
<article class="title">
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" class="db b pb2 o-50">
|
||||
{{ article.title }}
|
||||
</a>
|
||||
</article>
|
||||
|
||||
<div>
|
||||
{{ article.content }}
|
||||
<a class="w-100 black o-10 db pb5" href="{{ SITEURL }} " title="title">
|
||||
<div class="b black" style="font-size: 3.6em;">
|
||||
{% block content-title %}{{ SITENAME }}{% endblock %}
|
||||
</div>
|
||||
</a>
|
||||
|
||||
{% if not HIDE_DATE %}
|
||||
<time class="db w-100 tr pb4 o-30" datetime="{{ article.date.isoformat() }}">
|
||||
{{ article.date.isoformat() }}
|
||||
</time>
|
||||
{% endif %}
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
{% endif %}
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$('a[class*=external]').attr('target', '_blank').css('background-color', 'rgba(0, 0, 0, 0.1)');
|
||||
});
|
||||
</script>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$('a[class*=external]').attr('target', '_blank').css('background-color', 'rgba(0, 0, 0, 0.1)');
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,74 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
{% extends "base.html" %}
|
||||
{% block content-title %}{{ SITENAME }} - {{ category }}{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
<head>
|
||||
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/tachyons.min.css" type="text/css" />
|
||||
<script type="text/javascript" src="{{ SITEURL }}/theme/js/jquery-3.5.0.min.js"></script>
|
||||
<style>
|
||||
body {
|
||||
font: 0.75em/1.5 AppleGothic, Sans-serif;
|
||||
}
|
||||
{% for article in articles %}
|
||||
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
article.title {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
time {
|
||||
font-size: 0.65em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div style="margin: 1em;">
|
||||
|
||||
<a class="w-100 black o-10 db pb5" href="{{ SITEURL }} " title="title">
|
||||
<div class="b black" style="font-size: 3.6em;">
|
||||
{{ SITENAME }}
|
||||
</div>
|
||||
<article class="title">
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" class="db b pb2 o-50">
|
||||
{{ article.title }}
|
||||
</a>
|
||||
</article>
|
||||
|
||||
{% for article in articles %}
|
||||
<div>
|
||||
{{ article.content }}
|
||||
</div>
|
||||
|
||||
<article class="title">
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" class="db b pb2 o-50">
|
||||
{{ article.title }}
|
||||
</a>
|
||||
</article>
|
||||
|
||||
<div>
|
||||
{{ article.content }}
|
||||
</div>
|
||||
|
||||
{% if not HIDE_DATE %}
|
||||
{% if not HIDE_DATE %}
|
||||
<time class="db w-100 tr pb4 o-30" datetime="{{ article.date.isoformat() }}">
|
||||
{{ article.date.isoformat() }}
|
||||
</time>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$('a[class*=external]').attr('target', '_blank').css('background-color', 'rgba(0, 0, 0, 0.1)');
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
{% endblock %}
|
||||
|
|
|
|||
|
|
@ -1,82 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
|
||||
<head>
|
||||
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/tachyons.min.css" type="text/css" />
|
||||
<script type="text/javascript" src="{{ SITEURL }}/theme/js/jquery-3.5.0.min.js"></script>
|
||||
<style>
|
||||
body {
|
||||
font: 0.75em/1.5 AppleGothic, Sans-serif;
|
||||
}
|
||||
{% for category, articles in categories %}
|
||||
{% if category.name == 'notes' %}
|
||||
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
article.title {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
time {
|
||||
font-size: 0.65em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div style="margin: 1em;">
|
||||
|
||||
<a class="w-100 black o-10 db pb5" href="{{ SITEURL }} " title="title">
|
||||
<div class="b black" style="font-size: 3.6em;">
|
||||
{{ SITENAME }}
|
||||
{% for article in articles %}
|
||||
<article class="title">
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" class="db b pb2 o-50">
|
||||
{{ article.title }}
|
||||
</a>
|
||||
</article>
|
||||
<div>
|
||||
{{ article.content }}
|
||||
</div>
|
||||
</a>
|
||||
|
||||
{% for category, articles in categories %}
|
||||
|
||||
{% if category.name == 'notes' %}
|
||||
|
||||
{% for article in articles %}
|
||||
|
||||
<article class="title">
|
||||
<a href="{{ SITEURL }}/{{ article.url }}" class="db b pb2 o-50">
|
||||
{{ article.title }}
|
||||
</a>
|
||||
</article>
|
||||
|
||||
<div>
|
||||
{{ article.content }}
|
||||
</div>
|
||||
|
||||
{% if not HIDE_DATE %}
|
||||
{% if not HIDE_DATE %}
|
||||
<time class="db w-100 tr pb4 o-30" datetime="{{ article.date.isoformat() }}">
|
||||
{{ article.date.isoformat() }}
|
||||
</time>
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$('a[class*=external]').attr('target', '_blank').css('background-color', 'rgba(0, 0, 0, 0.1)');
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue