The repository for the code used for generating the photos.pablopie.xyz website πŸ“ΈοΈ

browse.thtml (2454B)

 1 <!DOCTYPE HTML>
 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
 3     xmlns:py="http://genshi.edgewall.org/"
 4     xmlns:xi="http://www.w3.org/2001/XInclude">
 5 <head>
 6   <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
 7   <title>Photos</title>
 8   <meta name="author" content="Pablo"/>
 9   <meta name="copyright" content="GPLv2"/>
10   <meta http-equiv="content-type" content="text/html; charset=utf-8" />
11   <link py:for="style in styles" type="text/css"
12         rel="$style.rel" media="screen,projection" title="$style.name"
13         href="${rel_root}shared/${style.filename}.css" />
14   <link py:if="feed_url" 
15         rel="alternate" 
16         type="application/rss+xml" 
17         title="Recent galleries" 
18         href="$feed_url" />
19   <link rel="icon" 
20         type="image/svg+xml" 
21         sizes="16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512"
22         href="https://pablopie.xyz/images/icons/favicon.svg" />
23 
24   <meta property="twitter:url" content="https:/photos.pablopie.xyz" />
25   <meta property="twitter:title" content="Photos" />
26   <meta property="twitter:description" content="Some of the photos I took." />
27   <meta property="twitter:image" content="index.png" />
28   <meta property="twitter:card" content="summary_large_image" />
29   
30   <meta property="og:title" content="Photos"/>
31   <meta property="og:image" content="index.png"/>
32   <meta property="og:image:type" content="image/png"/>
33   <meta property="og:url" content="http://localhost:4000/"/>
34   <meta property="og:description" content="Some of the photos I took."/>
35   <meta property="og:locale" content="en_US"/>
36   <meta property="og:type" content="website"/>
37 </head>
38 
39 <body>
40   <nav id="site-map">
41     <ul>
42       <li><strong><a href="https://pablopie.xyz/">@pablo 🚭</a></strong></li>
43       <li><a href="https://pablopie.xyz/contact.html">contact ☎️</a></li>
44       <li><a href="https://linux.ime.usp.br/~pablo/">maths πŸ“”</a></li>
45       <li><a href="https://git.pablopie.xyz/">repos πŸ™€οΈ</a></li>
46       <li><a href="https://photos.pablopie.xyz/">photos πŸ“Έ</a></li>
47     </ul>
48   </nav>
49 
50   <main>
51     <xi:include href="${mediatype}.thtml" />
52     
53     <div py:if="prev_link" id="prev_link">
54       <xi:include href="thumb.thtml" py:with="media=prev_link" />
55     </div>
56     
57     <div py:if="next_link" id="next_link">
58       <xi:include href="thumb.thtml" py:with="media=next_link" />
59     </div>
60   </main>
61 
62   <footer>Pablo Β© 2021</footer>
63 </body>
64 </html>