Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Add date via frontmatter

Abstract

A test abstract

adds updated date from frontmatter above.

requires custom css:

#skip-to-frontmatter {
  margin-bottom: 0;
  order: -2; /* Keep the original date first */
}

.article.content.article-grid {
  display: grid;
}

.updated-date-container {
  order: -1; /* Move it visually below the date */
}

For future reference : the order determines wether the abstract (order 0, default) is shown first or the updated date (manually set order -1).