diff --git a/frontpage.md b/frontpage.md new file mode 100644 index 0000000..3ab53a4 --- /dev/null +++ b/frontpage.md @@ -0,0 +1,49 @@ + +[frontpage](https://github.com/likeandscribe/frontpage)は[atproto](https://github.com/bluesky-social/atproto)を使って投稿の制御を行います。主にpdsの`collection`から検索と`at://`を使います。 + +[next.js](https://github.com/vercel/next.js)で書かれています。layoutは[tailwindcss](https://github.com/tailwindlabs/tailwindcss)です。 + +## tailwindcss + +htmlに省略形式でcssを記述します。 + +```html +
+ + {params.postAuthor === "syui.bsky.social" && ( + + )} + +
+ + {post.status === "live" ? ( + + ) : ( + + This post has been deleted + + Deleted posts cannot receive new comments. + + + )} + {comments.map((comment) => ( + + ))} +
+ +
+``` + +`@media`を制御する`sm`, `md`などは記述する順序を間違えると動きませんので注意。 +