| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <html lang='<?=$page->lang?>'>
- <head>
- <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
- <meta charset='utf-8'/>
- <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
- <title><?=$page->title?></title>
- <link rel='shortcut icon' href='<?=$page->favicon?>'/>
- <!-- CSS files -->
- <link rel='stylesheet' type='text/css' href='<?=$static["css"]?>ui.css'/>
- <link rel='stylesheet' type='text/css' href='<?=$static["css"]?>projects.css'/>
- <!-- Script files -->
- <script type="text/javascript" src="<?=$static["js"]?>ui.js"></script>
- <!-- Meta tags -->
- <link rel='canonical' href='<?=$page->canonical?>'/>
- <link rel='author' href='<?=$page->author?>'/>
- <link rel='publisher' href='<?=$page->author?>'/>
- <meta name='description' content='<?=$page->description?>'/>
- <meta property='og:title' content='<?=$page->title?>'/>
- <meta property='og:url' content='<?=$page->canonical?>'/>
- <meta property='og:description' content='<?=$page->description?>'/>
- <meta property='og:image' content='<?=$page->icon?>'/>
- <meta property='og:site_name' content='<?=$page->name?>'/>
- <meta property='og:type' content='website'/>
- <meta property='og:locale' content='<?=$page->lang?>'/>
- <meta name='twitter:card' content='summary'/>
- <meta name='twitter:title' content='<?=$page->title?>'/>
- <meta name='twitter:description' content='<?=$page->description?>'/>
- <meta name='twitter:image' content='<?=$page->icon?>'/>
- <meta name='twitter:url' content='<?=$page->canonical?>'/>
- <meta name='robots' content='index follow'/>
- </head>
- <body>
- <?php
- include $path["inc"] . "header.php";
- ?>
- <main>
- <section>
- <h3><?=$page->title?></h3>
- <?php
- foreach ($page->project as $project){
- ?>
- <article class='project'>
- <table>
- <tr>
- <?php
- if (strlen($project->logo) > 0){
- ?>
- <td>
- <a href='<?=$base_url?>/project/<?=$project->permalink?>'>
- <img class='project_image' alt='<?=$project->title?>' title='<?=$project->title?>' src='<?=$static["content"]?>project/<?=$project->logo?>' srcset='<?=srcset("project/" . $project->logo)?>'/>
- </a>
- </td>
- <?php
- }
- ?>
- <td class='project_details'>
- <a href='<?=$base_url?>/project/<?=$project->permalink?>'>
- <h4 class='project_name'><?=$project->title?></h4>
- </a>
- <span>
- <?=$project->header?>
- </span>
- </td>
- </tr>
- </table>
- </article> <!-- .project -->
- <?php
- }
- ?>
- </section>
- </main>
- <?php
- include $path["inc"] . "footer.php";
- ?>
- </body>
- </html>
|