114 lines
3.0 KiB
HTML
114 lines
3.0 KiB
HTML
<a class="card-link-outer" href="{{ .RelPermalink }}">
|
|
<div class="card" data-category="{{ .Params.category }}">
|
|
{{ with .Params.image }}
|
|
<img src="{{ . }}" alt="{{ $.Title }} cover">
|
|
{{ else }}
|
|
<img src="/img/no-cover-available-yet.png" alt="{{ $.Title }} - No cover available">
|
|
{{ end }}
|
|
{{ if eq .Params.consumed false }}
|
|
<div class="not-consumed-badge">Not {{ if eq .Params.category "Books" }}Read{{ else if eq .Params.category "Movies" }}Watched{{ else if eq .Params.category "TV Series" }}Watched{{ else if eq .Params.category "Restaurants" }}Visited{{ else if eq .Params.category "Recipes" }}Made{{ else if eq .Params.category "Concerts" }}Attended{{ else }}Experienced{{ end }} Yet</div>
|
|
{{ end }}
|
|
<div class="card-title">{{ .Title }}</div>
|
|
{{ with .Params.rating }}<div class="card-rating">{{ partial "stars.html" (dict "rating" .) }} {{ . }}</div>{{ end }}
|
|
{{ with .Params.likes }}<div class="card-likes">👍 {{ . }}</div>{{ end }}
|
|
{{ with .Params.recommended_by }}<div class="card-recommended">Recommended by: {{ . }}</div>{{ end }}
|
|
<div class="card-desc">{{ .Params.description }}</div>
|
|
</div>
|
|
</a>
|
|
<style>
|
|
.card-link-outer {
|
|
display: block;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
height: 100%;
|
|
}
|
|
.card-link-outer .card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: stretch;
|
|
width: 260px;
|
|
min-width: 260px;
|
|
max-width: 260px;
|
|
height: 390px;
|
|
min-height: 390px;
|
|
max-height: 390px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
border-radius: 16px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
|
|
transition: box-shadow 0.2s, transform 0.2s;
|
|
overflow: hidden;
|
|
}
|
|
.card-link-outer:hover .card {
|
|
box-shadow: 0 6px 24px rgba(33,150,243,0.18), 0 1.5px 6px rgba(33,150,243,0.10);
|
|
transform: translateY(-2px) scale(1.02);
|
|
cursor: pointer;
|
|
}
|
|
.card img {
|
|
width: 100%;
|
|
height: 180px;
|
|
object-fit: cover;
|
|
border-radius: 16px 16px 0 0;
|
|
}
|
|
.card-placeholder {
|
|
height: 180px !important;
|
|
width: 100%;
|
|
border-radius: 16px 16px 0 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.card-title {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
margin: 12px 16px 0 16px;
|
|
flex-shrink: 0;
|
|
}
|
|
.card-rating, .card-likes {
|
|
margin: 4px 16px 0 16px;
|
|
font-size: 0.95rem;
|
|
color: #888;
|
|
flex-shrink: 0;
|
|
}
|
|
.card-desc {
|
|
margin: 8px 16px 0 16px;
|
|
font-size: 0.98rem;
|
|
color: #444;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
.not-consumed-badge {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
background-color: rgba(33, 150, 243, 0.9);
|
|
color: white;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
z-index: 1;
|
|
}
|
|
.card-recommended {
|
|
margin: 4px 16px 0 16px;
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
font-style: italic;
|
|
}
|
|
@media (max-width: 600px) {
|
|
.card-link-outer .card {
|
|
width: 98vw;
|
|
min-width: 0;
|
|
max-width: 98vw;
|
|
height: 340px;
|
|
min-height: 340px;
|
|
max-height: 340px;
|
|
}
|
|
.card img, .card-placeholder {
|
|
height: 140px !important;
|
|
}
|
|
}
|
|
</style>
|