|  | 
| 37 | 37 |         <nav | 
| 38 | 38 |             id="main-navigation" | 
| 39 | 39 |             class="flex flex-row items-center justify-between w-full h-16 p-4 overflow-hidden shadow-lg sm:shadow-xl md:shadow-none z-20" | 
| 40 |  | -            aria-label="Primary Navigation Menu" | 
| 41 |  | -        > | 
|  | 40 | +            aria-label="Primary Navigation Menu"> | 
| 42 | 41 |             <header id="navigation-brand"> | 
| 43 | 42 |                 <a href="index.html" class="font-bold px-4"> HydePHP </a> | 
| 44 | 43 |             </header> | 
| 45 | 44 | 
 | 
| 46 | 45 |             <button | 
| 47 | 46 |                 class="navigation-toggle-button md:hidden" | 
| 48 | 47 |                 title="Open navigation menu" | 
| 49 |  | -                onClick="showNavigation()" | 
| 50 |  | -            > | 
|  | 48 | +                onClick="showNavigation()"> | 
| 51 | 49 |                 <svg | 
| 52 | 50 |                     xmlns="http://www.w3.org/2000/svg" | 
| 53 | 51 |                     height="24" | 
| 54 | 52 |                     viewBox="0 0 24 24" | 
| 55 |  | -                    width="24" | 
| 56 |  | -                > | 
|  | 53 | +                    width="24"> | 
| 57 | 54 |                     <path d="M0 0h24v24H0z" fill="none" /> | 
| 58 | 55 |                     <path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" /> | 
| 59 | 56 |                 </svg> | 
|  | 
| 68 | 65 |                 <li> | 
| 69 | 66 |                     <a href="master/index.html">Docs</a> | 
| 70 | 67 |                 </li> | 
|  | 68 | +                <li> | 
|  | 69 | +                    <a href="gallery.html">Gallery</a> | 
|  | 70 | +                </li> | 
| 71 | 71 |             </ul> | 
| 72 | 72 |         </nav> | 
| 73 | 73 | 
 | 
| 74 | 74 |         <nav | 
| 75 | 75 |             id="mobile-navigation" | 
| 76 | 76 |             class="hidden flex-col absolute top-0 w-full shadow-lg sm:shadow-xl bg-white z-30" | 
| 77 |  | -            aria-label="Primary Navigation Menu" | 
| 78 |  | -        > | 
|  | 77 | +            aria-label="Primary Navigation Menu"> | 
| 79 | 78 |             <div | 
| 80 |  | -                class="w-full flex flex-row items-center justify-between p-4 h-16 border-b" | 
| 81 |  | -            > | 
|  | 79 | +                class="w-full flex flex-row items-center justify-between p-4 h-16 border-b"> | 
| 82 | 80 |                 <header id="navigation-brand"> | 
| 83 | 81 |                     <a href="index.html" class="font-bold px-4"> HydePHP </a> | 
| 84 | 82 |                 </header> | 
| 85 | 83 | 
 | 
| 86 | 84 |                 <button | 
| 87 | 85 |                     class="navigation-toggle-button" | 
| 88 | 86 |                     title="Close navigation menu" | 
| 89 |  | -                    onClick="hideNavigation()" | 
| 90 |  | -                > | 
|  | 87 | +                    onClick="hideNavigation()"> | 
| 91 | 88 |                     <svg | 
| 92 | 89 |                         xmlns="http://www.w3.org/2000/svg" | 
| 93 | 90 |                         height="24" | 
| 94 | 91 |                         viewBox="0 0 24 24" | 
| 95 |  | -                        width="24" | 
| 96 |  | -                    > | 
|  | 92 | +                        width="24"> | 
| 97 | 93 |                         <path d="M0 0h24v24H0z" fill="none" /> | 
| 98 | 94 |                         <path | 
| 99 |  | -                            d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" | 
| 100 |  | -                        /> | 
|  | 95 | +                            d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" /> | 
| 101 | 96 |                     </svg> | 
| 102 | 97 |                 </button> | 
| 103 | 98 |             </div> | 
| 104 | 99 | 
 | 
| 105 | 100 |             <ul | 
| 106 | 101 |                 id="mobile-navigation-links" | 
| 107 |  | -                class="block w-full p-4 overflow-y-auto" | 
| 108 |  | -            > | 
|  | 102 | +                class="block w-full p-4 overflow-y-auto"> | 
| 109 | 103 |                 <li class="py-2 list-item list-item-active"> | 
| 110 | 104 |                     <a | 
| 111 | 105 |                         href="index.html" | 
|  | 
| 119 | 113 |                         >Docs</a | 
| 120 | 114 |                     > | 
| 121 | 115 |                 </li> | 
|  | 116 | +                <li class="py-2 list-item"> | 
|  | 117 | +                    <a href="gallery.html" class="hover:text-indigo-500" | 
|  | 118 | +                        >Gallery</a | 
|  | 119 | +                    > | 
|  | 120 | +                </li> | 
| 122 | 121 |             </ul> | 
| 123 | 122 |         </nav> | 
| 124 | 123 | 
 | 
|  | 
| 153 | 152 | 
 | 
| 154 | 153 |         <section id="content"> | 
| 155 | 154 |             <header | 
| 156 |  | -                class="w-screen pb-20 pt-32 lg:pt-44 flex flex-col text-center items-center justify-center min-h-[75vh]" | 
| 157 |  | -            > | 
|  | 155 | +                class="w-screen pb-20 pt-32 lg:pt-44 flex flex-col text-center items-center justify-center min-h-[75vh]"> | 
| 158 | 156 |                 <h1 | 
| 159 |  | -                    class="text-6xl md:text-7xl text-gray-800 font-black leading-7 md:leading-10" | 
| 160 |  | -                > | 
|  | 157 | +                    class="text-6xl md:text-7xl text-gray-800 font-black leading-7 md:leading-10"> | 
| 161 | 158 |                     HydePHP | 
| 162 | 159 |                 </h1> | 
| 163 | 160 |                 <div class="max-w-3xl p-8 mt-4"> | 
|  | 
| 183 | 180 |             <section id="posts" class="mx-auto max-w-7xl py-16 px-8 lg:mt-8"> | 
| 184 | 181 |                 <header class="lg:mb-12 xl:mb-16"> | 
| 185 | 182 |                     <h2 | 
| 186 |  | -                        class="text-3xl text-left opacity-75 leading-10 tracking-tight font-extrabold sm:leading-none mb-8 md:mb-12 md:text-4xl md:text-center lg:text-5xl" | 
| 187 |  | -                    > | 
|  | 183 | +                        class="text-3xl text-left opacity-75 leading-10 tracking-tight font-extrabold sm:leading-none mb-8 md:mb-12 md:text-4xl md:text-center lg:text-5xl"> | 
| 188 | 184 |                         Latest Posts | 
| 189 | 185 |                     </h2> | 
| 190 | 186 |                 </header> | 
|  | 
| 193 | 189 |                     <article | 
| 194 | 190 |                         class="mt-4 mb-8" | 
| 195 | 191 |                         itemscope | 
| 196 |  | -                        itemtype="https://schema.org/Article" | 
| 197 |  | -                    > | 
|  | 192 | +                        itemtype="https://schema.org/Article"> | 
| 198 | 193 |                         <meta | 
| 199 | 194 |                             itemprop="identifier" | 
| 200 |  | -                            content="creating-a-new-hyde-site-from-scratch" | 
| 201 |  | -                        /> | 
|  | 195 | +                            content="creating-a-new-hyde-site-from-scratch" /> | 
| 202 | 196 | 
 | 
| 203 | 197 |                         <header> | 
| 204 | 198 |                             <a | 
| 205 |  | -                                href="posts/creating-a-new-hyde-site-from-scratch.html" | 
| 206 |  | -                            > | 
|  | 199 | +                                href="posts/creating-a-new-hyde-site-from-scratch.html"> | 
| 207 | 200 |                                 <h2 | 
| 208 |  | -                                    class="text-2xl font-bold opacity-75 hover:opacity-100" | 
| 209 |  | -                                > | 
|  | 201 | +                                    class="text-2xl font-bold opacity-75 hover:opacity-100"> | 
| 210 | 202 |                                     Creating a new Hyde site from scratch | 
| 211 | 203 |                                 </h2> | 
| 212 | 204 |                             </a> | 
|  | 
| 220 | 212 |                             <span | 
| 221 | 213 |                                 itemprop="author" | 
| 222 | 214 |                                 itemscope | 
| 223 |  | -                                itemtype="https://schema.org/Person" | 
| 224 |  | -                            > | 
|  | 215 | +                                itemtype="https://schema.org/Person"> | 
| 225 | 216 |                                 <span class="opacity-75">by</span> | 
| 226 | 217 |                                 <span itemprop="name"> Caen </span> | 
| 227 | 218 |                             </span> | 
|  | 
| 243 | 234 |                     <article | 
| 244 | 235 |                         class="mt-4 mb-8" | 
| 245 | 236 |                         itemscope | 
| 246 |  | -                        itemtype="https://schema.org/Article" | 
| 247 |  | -                    > | 
|  | 237 | +                        itemtype="https://schema.org/Article"> | 
| 248 | 238 |                         <meta | 
| 249 | 239 |                             itemprop="identifier" | 
| 250 |  | -                            content="why-static-sites" | 
| 251 |  | -                        /> | 
|  | 240 | +                            content="why-static-sites" /> | 
| 252 | 241 | 
 | 
| 253 | 242 |                         <header> | 
| 254 | 243 |                             <a href="posts/why-static-sites.html"> | 
| 255 | 244 |                                 <h2 | 
| 256 |  | -                                    class="text-2xl font-bold opacity-75 hover:opacity-100" | 
| 257 |  | -                                > | 
|  | 245 | +                                    class="text-2xl font-bold opacity-75 hover:opacity-100"> | 
| 258 | 246 |                                     Why static sites? | 
| 259 | 247 |                                 </h2> | 
| 260 | 248 |                             </a> | 
|  | 
| 268 | 256 |                             <span | 
| 269 | 257 |                                 itemprop="author" | 
| 270 | 258 |                                 itemscope | 
| 271 |  | -                                itemtype="https://schema.org/Person" | 
| 272 |  | -                            > | 
|  | 259 | +                                itemtype="https://schema.org/Person"> | 
| 273 | 260 |                                 <span class="opacity-75">by</span> | 
| 274 | 261 |                                 <span itemprop="name"> Caen </span> | 
| 275 | 262 |                             </span> | 
|  | 
| 290 | 277 |                     <article | 
| 291 | 278 |                         class="mt-4 mb-8" | 
| 292 | 279 |                         itemscope | 
| 293 |  | -                        itemtype="https://schema.org/Article" | 
| 294 |  | -                    > | 
|  | 280 | +                        itemtype="https://schema.org/Article"> | 
| 295 | 281 |                         <meta | 
| 296 | 282 |                             itemprop="identifier" | 
| 297 |  | -                            content="creating-a-static-html-post-using-hydephp" | 
| 298 |  | -                        /> | 
|  | 283 | +                            content="creating-a-static-html-post-using-hydephp" /> | 
| 299 | 284 | 
 | 
| 300 | 285 |                         <header> | 
| 301 | 286 |                             <a | 
| 302 |  | -                                href="posts/creating-a-static-html-post-using-hydephp.html" | 
| 303 |  | -                            > | 
|  | 287 | +                                href="posts/creating-a-static-html-post-using-hydephp.html"> | 
| 304 | 288 |                                 <h2 | 
| 305 |  | -                                    class="text-2xl font-bold opacity-75 hover:opacity-100" | 
| 306 |  | -                                > | 
|  | 289 | +                                    class="text-2xl font-bold opacity-75 hover:opacity-100"> | 
| 307 | 290 |                                     Creating a static HTML post using HydePHP | 
| 308 | 291 |                                 </h2> | 
| 309 | 292 |                             </a> | 
|  | 
| 317 | 300 |                             <span | 
| 318 | 301 |                                 itemprop="author" | 
| 319 | 302 |                                 itemscope | 
| 320 |  | -                                itemtype="https://schema.org/Person" | 
| 321 |  | -                            > | 
|  | 303 | +                                itemtype="https://schema.org/Person"> | 
| 322 | 304 |                                 <span class="opacity-75">by</span> | 
| 323 | 305 |                                 <span itemprop="name"> Caen </span> | 
| 324 | 306 |                             </span> | 
|  | 
0 commit comments