18 lines
587 B
HTML
18 lines
587 B
HTML
{{- $imdb := .Page.Params.imdb -}}
|
|
{{- $poster := printf "https://img.omdbapi.com/?i=%s&apikey=d9641e70" $imdb -}}
|
|
|
|
<div style="display: flex; justify-content: flex-start; align-items: flex-start;">
|
|
<!-- Left section: code block with viewing details -->
|
|
<div style="flex: 1; padding-right: 20px;">
|
|
{{ .Inner | markdownify }}
|
|
</div>
|
|
|
|
<!-- Right section: movie poster -->
|
|
<div style="flex-shrink: 0;">
|
|
<a href="https://www.imdb.com/title/{{ $imdb }}" target="_blank">
|
|
<img src="{{ $poster }}" alt="Movie Poster" style="width: 200px;" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|