Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivan3bx/carrier-pigeon
A Hugo template using TailwindCSS
https://github.com/ivan3bx/carrier-pigeon
hugo hugo-theme tailwindcss
Last synced: 27 days ago
JSON representation
A Hugo template using TailwindCSS
- Host: GitHub
- URL: https://github.com/ivan3bx/carrier-pigeon
- Owner: ivan3bx
- License: mit
- Created: 2024-02-06T19:54:32.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-29T19:32:33.000Z (8 months ago)
- Last Synced: 2024-09-28T05:41:08.842Z (about 1 month ago)
- Topics: hugo, hugo-theme, tailwindcss
- Language: HTML
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Carrier Pigeon
* Hugo theme
* Tailwind CSS
* Supports the [Unfit for Work](https://unfit-for.work) blog.## Current State / TODO
Some additional changes needed before it's ready for general use.
- Adding Twitter & OpenGraph metadata
- Handling long-titles
- Fix analytics (Revert [this commit](https://github.com/ivan3bx/carrier-pigeon/commit/e5a6a0acac81d984710c431c5e8520874faae8b3) and move plausible analytics to site configuration).
- 404 page## Demo Site 🐦
- https://unfit-for.work
## Installation
Run tailwind with live reload.
`npm run dev`Run a build to generate minified styles.
`npm run build`## Configuration
This theme includes a 'small' output format intended to present
a concise view of a single page, with just title, summary and
date.To support it, the site config requires the following site config:
```toml
# Support 'small' embeddable format[outputFormats]
[outputFormats.smallFormat]
name = "small"
mediaType = 'text/html'
baseName = "small"
isPlainText = false
rel = "alternate"
isHTML = true
noUgly = true
permalinkable = false[outputs]
page = ['html', 'small']
```