Files
roxo-hugo/layouts/portfolio/single.html
Al Murad Uzzaman f8b297eaad feat: migrate Hugo Bootstrap theme to latest Hugo with Tailwind CSS and refactor codebase
* replace Bootstrap-based styling with Tailwind CSS
* update theme compatibility for latest Hugo version
* refactor templates and partials
* fix outdated code and broken components
* improve project structure and maintainability
* optimize styling and frontend build setup
2026-05-10 13:38:01 +06:00

28 lines
636 B
HTML

{{ define "main" }}
<section class="section pt-46">
<div class="container">
<div class="mx-auto max-w-4xl">
<div class="mb-10 space-y-6">
<h1 class="font-medium tracking-wider h2">
{{ .Title }}
</h1>
{{ with .Params.image }}
<img
src="{{ . | absURL }}"
alt="{{ $.Title }}"
class="w-full object-cover shadow-lg" />
{{ end }}
</div>
<div class="content space-y-8">
{{ .Content }}
</div>
</div>
</div>
</section>
{{ partial "call-to-action.html" . }}
{{ end }}