This post is dedicated to testing the Blowfish theme capabilities in Hugo. It’s designed to cover formatting, special blocks, tabs, footnotes, and embeds.
Recent#
Here are few recent posts:
Recent posts
Callouts and Alerts#
Warning! This action is destructive!
This is an error!
Carousel#

Code Importer#
An example of importing code from an external source:
class BaseDataSource:
def filter(self, field: str | None, operator: str | None, value: str | None) -> Self: ...
def sort(self, sort_by: str | None, sort_order: str | None) -> Self: ...
def paginate(self, page: int, size: int) -> Self: ...
def all(self) -> list[dict[str, Any]]: ...
def count(self) -> int: ...
Chart#
Mermaid#
flowchart TD A[Start Adventure] --> B{Choose Path} B --> |Forest| C[Find a Hidden Treasure] B --> |Mountain| D[Encounter a Dragon] B --> |River| E[Meet a Friendly Mermaid] C --> F[Return Home Rich] D --> F E --> F F --> G[Celebrate Your Journey]