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

dirindex.thtml (2426B)

 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="https://photos.pablopie.xyz/"/>
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 <body>
39   <nav id="site-map">
40     <ul>
41       <li><strong><a href="https://pablopie.xyz/">@pablo 🚭</a></strong></li>
42       <li><a href="https://pablopie.xyz/contact.html">contact ☎️</a></li>
43       <li><a href="https://linux.ime.usp.br/~pablo/">maths πŸ“”</a></li>
44       <li><a href="https://git.pablopie.xyz/">repos πŸ™€οΈ</a></li>
45       <li><a href="https://photos.pablopie.xyz/">photos πŸ“Έ</a></li>
46     </ul>
47   </nav>
48 
49   <main>
50     <h1>Photos</h1>
51 
52     <section id="preamble">
53       <p>Some of the photos I took.</p>
54     </section>
55 
56     <div py:for="subdir, medias in medias" py:if="medias" id="gallery">
57       <xi:include href="thumb_fixed.thtml" py:for="media in medias"/>
58     </div>
59   </main>
60 
61   <footer>Pablo Β© 2021</footer>
62 </body>
63 </html>