diff --git a/src/components/projects/project-tile.vue b/src/components/projects/project-tile.vue
new file mode 100644
index 0000000..2c863a1
--- /dev/null
+++ b/src/components/projects/project-tile.vue
@@ -0,0 +1,47 @@
+
+
+
+.project-embed
+ a.link(
+ :href='id'
+ :style='{ background: thumbnailBackground, backgroundSize: thumbnailBackgroundSize }'
+ )
+ .text
+ .title(
+ v-html='title'
+ )
+ p.period(
+ v-if='period'
+ ) {{ period }}
+ .caption(
+ v-html='caption'
+ )
+ .summary(
+ v-html='summary'
+ )
+
+
+
+
diff --git a/src/content-env.d.ts b/src/content-env.d.ts
index be146f5..c9c905c 100644
--- a/src/content-env.d.ts
+++ b/src/content-env.d.ts
@@ -5,6 +5,7 @@ declare module 'content/routes.js' {
*/
type Template =
| 'markdown'
+ | 'project-list'
/**
* Defines the shared options for a route
@@ -22,6 +23,13 @@ declare module 'content/routes.js' {
content: string
}
+ /**
+ * Defines a config-based route
+ */
+ type ConfigfulRouteDefinition = SharedRouteDefinition & {
+ config: string
+ }
+
/**
* Defines the config for a route using the `markdown` {@link Template}
*/
@@ -29,11 +37,19 @@ declare module 'content/routes.js' {
template: 'markdown'
}
+ /**
+ * Defines the config for a route using the `project-list` {@link Template}
+ */
+ type ProjectListDefinition = ConfigfulRouteDefinition & {
+ template: 'project-list'
+ }
+
/**
* Defines all available route definitions
*/
type RouteDefinition =
| MarkdownDefinition
+ | ProjectListDefinition
/**
* Defines the collection of routes the app uses
diff --git a/src/main.vue b/src/main.vue
index 24026ef..696446d 100644
--- a/src/main.vue
+++ b/src/main.vue
@@ -1,17 +1,18 @@
+
+
+.template.project-list
+ #projects(
+ v-if='ready'
+ )
+ ProjectTile(
+ v-for='id in projectIds'
+ :id='id'
+ :info='projects[id]'
+ )
+
+
+