12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html>
- <head>
- <link rel='stylesheet' href='style.css'>
-
- </head>
- <body>
-
- <div class="container">
-
- <!-- navigation html below this line-->
- <header>banner</header>
- <nav class='box'>
- <h2>navigation</h2>
- <ul>
- <li><a href="#">home</a></li>
- <li><a href="github.com/aste-risk">about</a></li>
- <li><a href="#">your advertisements</a></li>
- <li><a href="pages/advertisement/create.htm">create advertisement</a></li>
- </ul>
- </nav>
-
- <!-- home page html below this line-->
- <div class='box'>
- <?php require './src/index.php'; ?>
- <h2>catalog</h2>
- <section class='content'>
-
- <form method='GET'>
- <input type='search' placeholder='search' />
- <select>
- <option>1</option>
- <option>2</option>
- </select>
- </form>
-
- <p>a catalog-like advertisement listing goes here</p>
- <article class='box'>
- <h2><a href='advertisement/1'>advertisement nr1</a></h2>
- <p class='description'>description of advertisement nr1</p>
- </article>
- <article class='box'>
- <h2><a href='advertisement/2'>advertisement nr2</a></h2>
- <p class='description'>advertisement nr2 descriptions</p>
- </article>
- </section>
- </div>
-
- </div>
-
- </body>
- </html>
|