feat: add draft indicator for post list
This commit is contained in:
parent
ff91324a79
commit
e6816df0dc
2 changed files with 243 additions and 221 deletions
|
@ -5,7 +5,7 @@ const { posts, displayDate = false, placeholder = false } = Astro.props;
|
||||||
{posts.map((post) => (
|
{posts.map((post) => (
|
||||||
<p>
|
<p>
|
||||||
{displayDate && <span class="list-date">{new Date(post.data.date).toISOString().split('T')[0]}</span>}
|
{displayDate && <span class="list-date">{new Date(post.data.date).toISOString().split('T')[0]}</span>}
|
||||||
<a href={`/blog/${post.slug}`}>{post.data.title}</a>
|
{post.data.draft && <span class="draft-badge">[draft] </span>}<a href={`/blog/${post.slug}`}>{post.data.title}</a>
|
||||||
</p>
|
</p>
|
||||||
))}
|
))}
|
||||||
|
|
||||||
|
|
|
@ -12,8 +12,9 @@
|
||||||
--terminal-green: #a3be8c;
|
--terminal-green: #a3be8c;
|
||||||
--terminal-yellow: #ebcb8b;
|
--terminal-yellow: #ebcb8b;
|
||||||
--terminal-red: #bf616a;
|
--terminal-red: #bf616a;
|
||||||
--font-mono: 'JetBrains Mono',ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
--font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Light theme */
|
/* Light theme */
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
:root:not([data-theme="dark"]) {
|
:root:not([data-theme="dark"]) {
|
||||||
|
@ -29,6 +30,7 @@
|
||||||
--terminal-red: #bf616a;
|
--terminal-red: #bf616a;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Light theme override (for switch) */
|
/* Light theme override (for switch) */
|
||||||
:root[data-theme="light"] {
|
:root[data-theme="light"] {
|
||||||
--bg-color: #eceff4;
|
--bg-color: #eceff4;
|
||||||
|
@ -116,9 +118,11 @@ body {
|
||||||
content: "./";
|
content: "./";
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
.nav a.home::before{
|
|
||||||
|
.nav a.home::before {
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
.cursor {
|
.cursor {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 0.6em;
|
width: 0.6em;
|
||||||
|
@ -129,8 +133,12 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes blink {
|
@keyframes blink {
|
||||||
from, to { opacity: 1; }
|
from, to {
|
||||||
50% { opacity: 0; }
|
opacity: 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
|
@ -171,6 +179,7 @@ body {
|
||||||
background: var(--accent-color);
|
background: var(--accent-color);
|
||||||
color: var(--bg-color);
|
color: var(--bg-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Theme Switcher */
|
/* Theme Switcher */
|
||||||
.theme-switcher {
|
.theme-switcher {
|
||||||
background: var(--border-color);
|
background: var(--border-color);
|
||||||
|
@ -194,8 +203,10 @@ h1.title {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.content {
|
div.content {
|
||||||
margin: 1rem auto;
|
margin: 1rem auto;
|
||||||
|
|
||||||
span.date {
|
span.date {
|
||||||
color: var(--secondary-text-color);
|
color: var(--secondary-text-color);
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
|
@ -203,6 +214,7 @@ div.content {
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.list-date {
|
span.list-date {
|
||||||
color: var(--secondary-text-color);
|
color: var(--secondary-text-color);
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
|
@ -210,14 +222,21 @@ div.content {
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.draft-badge {
|
||||||
|
color: var(--secondary-text-color);
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
ul, ol, li {
|
ul, ol, li {
|
||||||
list-style-position: inside;
|
list-style-position: inside;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul li {
|
ul li {
|
||||||
padding-left: 0.5em;
|
padding-left: 0.5em;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
|
@ -228,7 +247,9 @@ div.content {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
margin: 1rem auto;
|
margin: 1rem auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Highlighted Code Blocks */
|
/* Highlighted Code Blocks */
|
||||||
|
|
||||||
pre.astro-code,
|
pre.astro-code,
|
||||||
pre.astro-code span {
|
pre.astro-code span {
|
||||||
background-color: #3b4252 !important;
|
background-color: #3b4252 !important;
|
||||||
|
@ -264,6 +285,7 @@ div.content {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Responsive Images */
|
/* Responsive Images */
|
||||||
|
|
||||||
img {
|
img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -271,7 +293,6 @@ div.content {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Terminal Commands */
|
/* Terminal Commands */
|
||||||
.command {
|
.command {
|
||||||
color: var(--terminal-green);
|
color: var(--terminal-green);
|
||||||
|
@ -288,13 +309,14 @@ div.content {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transition-property: opacity;
|
transition-property: opacity;
|
||||||
transition-duration: .7s;
|
transition-duration: .7s;
|
||||||
transition-timing-function: cubic-bezier(.4,0,1,1);
|
transition-timing-function: cubic-bezier(.4, 0, 1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.fade-out {
|
.fade-out {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition-property: opacity;
|
transition-property: opacity;
|
||||||
transition-duration: .7s;
|
transition-duration: .7s;
|
||||||
transition-timing-function: cubic-bezier(.4,0,1,1);
|
transition-timing-function: cubic-bezier(.4, 0, 1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Media Queries */
|
/* Media Queries */
|
||||||
|
@ -329,7 +351,7 @@ div.content {
|
||||||
/* Printing */
|
/* Printing */
|
||||||
@media print {
|
@media print {
|
||||||
/* Hide elements not needed for print */
|
/* Hide elements not needed for print */
|
||||||
nav.nav,.search-container,footer,div.extra-post {
|
nav.nav, .search-container, footer, div.extra-post {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue