記事作成日と更新日にアイコンを表示するカスタマイズです。
「追加CSS」に下記を追記しました。
/*記事作成日のアイコン*/
time.published:before {
font-family: "Font Awesome 5 Free";
content: "\f017";
font-weight: 400;
}
time.updated:not(.published){
display: inline;
}
/*記事更新日のアイコン*/
time.updated:not(.published):before{
font-family:"Font Awesome 5 Free";
content:"\00a0\f1da";
font-weight: 900;
}