SeemGen/wwwroot/htmlpage.html

154 lines
5.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<!-- Hero Block with Image -->
<section class="hero-section py-5 bg-light">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<h1>{{title}}</h1>
<p class="lead">{{subtitle}}</p>
<a href="{{cta_link}}" class="btn btn-primary">{{cta_text}}</a>
</div>
<div class="col-md-6 text-center">
<img src="{{image_url}}" class="img-fluid" alt="Hero Image" />
</div>
</div>
</div>
</section>
<!-- Feature 3-Column Block -->
<section class="features-section py-5">
<div class="container">
<div class="row text-center">
{{#each features}}
<div class="col-md-4 mb-4">
<i class="bi {{icon}} display-4 text-primary"></i>
<h5 class="mt-3">{{title}}</h5>
<p>{{description}}</p>
</div>
{{/each}}
</div>
</div>
</section>
<!-- Testimonial Block -->
<section class="testimonials py-5 bg-white border-top">
<div class="container">
<h2 class="text-center mb-4">What people are saying</h2>
<div class="row">
{{#each testimonials}}
<div class="col-md-4">
<blockquote class="blockquote">
<p class="mb-0">"{{quote}}"</p>
<footer class="blockquote-footer mt-2">{{author}}</footer>
</blockquote>
</div>
{{/each}}
</div>
</div>
</section>
<!-- Call to Action Block -->
<section class="cta-section bg-primary text-white py-5">
<div class="container text-center">
<h2>{{cta_heading}}</h2>
<p class="mb-4">{{cta_description}}</p>
<a href="{{cta_button_link}}" class="btn btn-light">{{cta_button_text}}</a>
</div>
</section>
<!-- Footer Block -->
<footer class="footer py-4 bg-dark text-white">
<div class="container text-center">
<p class="mb-1">&copy; {{year}} {{brand_name}}. All rights reserved.</p>
<small>{{footer_links}}</small>
</div>
</footer>
<section class="py-5 bg-light">
<div class="container">
<h2 class="mb-4">{{title}}</h2>
<form>
{{#each fields}}
<div class="mb-3">
<label class="form-label">{{label}}</label>
<input type="{{type}}" class="form-control" placeholder="{{placeholder}}">
</div>
{{/each}}
<button type="submit" class="btn btn-primary">{{buttonText}}</button>
</form>
</div>
</section>
<section class="py-5 text-center">
<div class="container">
<h2 class="mb-5">{{title}}</h2>
<div class="row g-4">
{{#each images}}
<div class="col-6 col-md-4 col-lg-3">
<img src="{{url}}" alt="{{alt}}" class="img-fluid rounded shadow-sm" />
</div>
{{/each}}
</div>
</div>
</section>
<section class="py-5 bg-light">
<div class="container text-center">
<h2 class="mb-5">{{title}}</h2>
<div class="row">
{{#each plans}}
<div class="col-md-4 mb-4">
<div class="card h-100 border-0 shadow">
<div class="card-body">
<h5 class="card-title">{{name}}</h5>
<h6 class="card-price display-5 fw-bold">{{price}}</h6>
<ul class="list-unstyled my-4">
{{#each features}}
<li>✔️ {{.}}</li>
{{/each}}
</ul>
<a href="{{buttonLink}}" class="btn btn-outline-primary">{{buttonText}}</a>
</div>
</div>
</div>
{{/each}}
</div>
</div>
</section>
<article class="py-5">
<div class="container">
<h1 class="mb-3">{{title}}</h1>
<p class="text-muted">{{date}}</p>
{{#each paragraphs}}
<p>{{.}}</p>
{{/each}}
</div>
</article>
<article class="py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 mb-4 mb-lg-0">
<img src="{{imageUrl}}" alt="{{imageAlt}}" class="img-fluid rounded shadow-sm" />
</div>
<div class="col-lg-6">
<h1 class="mb-3">{{title}}</h1>
<p class="text-muted">{{date}}</p>
{{#each paragraphs}}
<p>{{.}}</p>
{{/each}}
</div>
</div>
</div>
</article>
</body>
</html>