mirror of
https://github.com/logos-co/devrel-station.git
synced 2026-08-27 11:21:12 +00:00
The DevRel hub for Logos. Three areas: - /rfps — accepted RFP deliveries from data/rfps/*.md (milestones, engineering reviews via GitHub issue comments, finance payouts) - /content-factory — collections of published resources from data/content-factory/*.md, with video thumbnails via fxtwitter at ISR - /feedback — org-wide `feedback`-labeled GitHub issues; the on-page form files new feedback as an issue in this repository Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
28 lines
839 B
Markdown
28 lines
839 B
Markdown
# Content Factory collection template
|
|
|
|
A collection is a named series of published resources — a tweet thread
|
|
series, a video playlist, a set of posts. One file per collection: copy the
|
|
template below into `data/content-factory/<short-name>.md`
|
|
(e.g. `data/content-factory/basecamp-tutorials.md`). The dashboard reads
|
|
every `.md` file in `data/content-factory/` (files starting with `_` are
|
|
ignored).
|
|
|
|
Items are listed in series order and shown as links on the board. `platform`
|
|
is optional. The markdown body is free-form notes, shown under the links.
|
|
|
|
---
|
|
|
|
```markdown
|
|
---
|
|
title: Collection name
|
|
platform: X # where it's published (optional)
|
|
items:
|
|
- title: Part 0
|
|
url: https://x.com/you/status/123
|
|
- title: Part 1
|
|
url: https://x.com/you/status/456
|
|
---
|
|
|
|
Free-form notes about this collection (optional).
|
|
```
|