{{ year }}年 {{ month }}月
« 前月
|
翌月 »
月
火
水
木
金
土
日
{% for d in month_days %} {% if loop.index0 % 7 == 0 %}
{% endif %} {% set day_css = "" %} {% if d.month != month %} {% set day_css = "other-month" %} {% endif %} {% if d == today_date %} {% set day_css = day_css ~ " today" %} {% endif %}
{{ d.day }}
{% if loop.index0 % 7 == 6 %}
{% endif %} {% endfor %}