This is a sample post. Delete it when you’re ready.

Code blocks work

Swift:

struct Post: Identifiable {
    let id = UUID()
    var title: String
    var body: String
    var date: Date
}

Dart/Flutter:

class PostBloc extends Bloc<PostEvent, PostState> {
  PostBloc({required PostRepository repository})
      : _repository = repository,
        super(const PostState()) {
    on<PostFetched>(_onPostFetched);
  }
}

Inline code: use hugo server to preview locally.

Images work

Drop images in static/images/ and reference them like:

![A description of the image](/images/your-photo.jpg)