diff --git a/templates/base.html b/templates/base.html index d65e70e..b1cd72c 100644 --- a/templates/base.html +++ b/templates/base.html @@ -15,9 +15,8 @@ diff --git a/templates/plist.html b/templates/plist.html index 95b16b8..996c278 100644 --- a/templates/plist.html +++ b/templates/plist.html @@ -5,6 +5,8 @@ {% block style %} {% endblock %} @@ -77,8 +79,8 @@ h1 a:not([href]){color:inherit;text-decoration:none;vertical-align: bottom;font-
{% if postListJson[num]['commentNum']>0 %}{{ postListJson[num]['commentNum'] }}{% endif %} - {{ postListJson[num]['label'] }} - {{ postListJson[num]['createdDate'] }} + {{ postListJson[num]['label'] }} + {{ postListJson[num]['createdDate'] }}
{%- endfor %} diff --git a/templates/tag.html b/templates/tag.html index d47b80b..4547fe3 100644 --- a/templates/tag.html +++ b/templates/tag.html @@ -19,9 +19,7 @@ h1 a:not([href]){color:inherit;text-decoration:none;vertical-align: bottom;font- @media (max-width: 767px) { body { padding: 8px;} h1 a{font-size:24px;} - .SideNav-item .listLabels{display:none;} - .subTitle{display:none;} - .genTime{float: none;} + .LabelTime{display:none;} } {% endblock %} @@ -124,12 +122,12 @@ function showList(){ let listLabels=document.createElement("div"); listLabels.setAttribute("class","listLabels"); let LabelName=document.createElement("span"); - LabelName.setAttribute("class","Label"); + LabelName.setAttribute("class","Label LabelName"); LabelName.setAttribute("style","background-color:"+jsonData["postListJson"][i]['labelColor']); LabelName.innerHTML=jsonData["postListJson"][i]['label']; listLabels.appendChild(LabelName); let LabelTime=document.createElement("span"); - LabelTime.setAttribute("class","Label"); + LabelTime.setAttribute("class","Label LabelTime"); LabelTime.setAttribute("style","background-color:"+jsonData["postListJson"][i]['dateLabelColor']); LabelTime.innerHTML=jsonData["postListJson"][i]['createdDate']; listLabels.appendChild(LabelTime);