const minisrv_service_file = true;
headers = `200 OK
Connection: Keep-Alive
Content-Type: text/html`;
const styleName = request_headers.query.styleName;
let page = (request_headers.query.pageNum) ? parseInt(request_headers.query.pageNum) : 0
const docName = request_headers.query.docName;
const pages = [
[
// Name, TMPL, GIF
["Blue Sands", "Blue_Sands", "blue_sands"],
["Ocean", "Ocean", "oceanic"],
["Space", "Space", "space"],
["Ringbinder", "ringbinder", "ringbinder"],
["Stone", "Stone", "stone"],
["Cats", "Cats", "catz"]
],
[
["Blue", "Blue", "blue"],
["Green", "Green", "green"],
["Red", "Red", "red"],
["Brown Spots", "Brown_Spots", "brown_spots"],
["Grey", "Grey", "grey"],
["Rivets", "Rivets", "rivets"]
],
[
["Football", "Football", "football"],
["Baseball", "Baseball", "baseball"],
["Christmas", "xmas", "xmas"],
["Channukah", "Channukah", "channukah"],
["Easter", "Easter", "easter"],
["Halloween", "Halloween", "halloween"]
],
[
["Democratic", "Democratic", "democratic"],
["Republican", "Republican", "republican"],
["Flowers", "Flowers", "flowers"],
["It's a Girl", "Itsagirl", "itsagirl"],
["It's a Boy", "Itsaboy", "itsaboy"],
["Wedding", "Wedding", "wedding"]
],
[
["New Wave", "1983", "1983"],
["Eyeballs", "Eyeballs", "eyeballs"],
["America", "usflag", "us_flag"],
["South Beach", "southbeach", "south_beach"],
["Paisley", "paisley", "spirals"],
["Green Paper", "Green_Paper", "light_green_paper"]
],
[
["Water", "Water", "water"],
["Marble", "marble", "marble"],
["Finance", "Business", "business"]
]
];
if (page >= pages.length) page = pages.length - 1; // max page
if (page < 0) page = 0 // min page
const currentPage = pages[page];
data = `
Select a page style
|
|
|
Choose a page style
|
|
|
${page + 1} of ${pages.length} |
|
|
|
|
| You can change the style at any time without losing your text or images.
|
|
|
|
${(styleName) ? ` Your current style is: ${styleName} ` : ''}
|
|
|
`;
for (let i = 0; i < currentPage.length; i++) {
if (i % 3 === 0) data += `
`
data += `
|
| `
}
data += `
`;