Historical Eras

These are the major sweeping parts of our History as humans, from the foundation of the Solseed project, to the present day.

Browse all historical eras

const pages = dv.pages('"History/Historical Eras"')
  .where(p => p.file.name !== dv.current().file.name)
  .sort(p => p.file.name, 'asc');

dv.table(
  ["Event or era", "Type"],
  pages.map(p => [
    p.file.link,
    p.type ?? ""
  ])
);
Built with LogoFlowershow