File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ function formatDateID(dateString) {
6363 const date = new Date ( dateString ) ;
6464 return date . getFullYear ( ) +
6565 "-" +
66- ( date . getMonth ( ) . toString ( ) . padStart ( 2 , '0' ) + 1 ) +
66+ ( date . getMonth ( ) + 1 ) . toString ( ) . padStart ( 2 , '0' ) +
6767 "-" +
6868 date . getDate ( ) . toString ( ) . padStart ( 2 , '0' ) ;
6969}
Original file line number Diff line number Diff line change @@ -154,8 +154,7 @@ function generatePostHTML(post) {
154154<body>
155155 <h1>the mimolet updates.</h1>
156156 <div id="links">
157- <a href="/" rel="noopener noreferrer">Home</a><br>
158- <a href="/feed.xml" target="_blank" rel="noopener noreferrer">Subscribe (RSS)</a>
157+ <a href="../" target="_blank" rel="noopener noreferrer">All Posts</a>
159158 </div>
160159 <article class="feed-item">
161160 <h1>${ frontmatter . title } </h1>
You can’t perform that action at this time.
0 commit comments