Setup:
Go to the Template folder, and open up 'multi.html'
Copy all of the code in this file.
Go to the Page folder, and create a new file.
Name the file what you want to have appear at the end of the URL.
Paste the code in the new file.
Differences:
The first two sections are the same as in a single image page.
The main difference is that a div id called 'two-column' is used instead of 'page'.
Captions are also put outside of this div id, instead of within it.
1. Images
On desktop, <div id="two-column">
will display every <div class="img-container"> ... </div>
in a two column grid.
On mobile, it collapses into one column.
You can change <div id="two-column">
to <div id="three-column">
to use a three column layout on desktop. It will also collapse to one column on mobile.
The page for William E. Nutt uses the two column layout.
2. Caption
In the template, <div class="caption-always-centered"> ... </div>
goes underneath the images.
If you want to move the caption to the top, cut and paste that code to be above <div id="two-column">
. Make sure to cut and paste the <hr>
divider as well, placing it between the caption and the images.
A scenario where you might want the caption up top is if you want some information to appear before a long comic.
You can also remove the caption and divider entirely.