Skip to content

Commit aa5fe25

Browse files
committed
fix: disable series page
Signed-off-by: Xe Iaso <[email protected]>
1 parent cf84bce commit aa5fe25

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lume/src/blog/series/index.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ export default ({ seriesDescriptions }) => {
1212
Some posts of mine are intended to be read in order. This is a list of all the series I have written along with a little description of what it's about.
1313
</p>
1414

15-
<ul class="list-disc ml-4 mb-4">
15+
<p className="mb-4">This page is currently under maintenance.</p>
16+
17+
{/* <ul class="list-disc ml-4 mb-4">
1618
{seriesDescriptions.map((v) => (
1719
<li>
1820
<a href={`/blog/series/${v.name}`}>{v.name}</a>: {v.details}
1921
</li>
2022
))}
21-
</ul>
23+
</ul> */}
2224
</>
2325
);
2426
};

0 commit comments

Comments
 (0)