A fake auction house I made for a school project.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
the_auctionhouse/src/views/layout.slim

37 lines
1.2 KiB

html lang="en"
head
meta charset="UTF-8"
meta name="viewport" content="width=device-width, initial-scale=1.0"
link rel="stylesheet" href="/style.css"
title The Auction House
body
header
div
a.inlbutton#logo_container href="/" target="_self"
h1
| The Auction House
h2 = get_random_subtitle
nav
ul
- unless is_logged_in
li
a.button#login href="/login" target="_self"
| LOG IN
li
a.button#register href="/register" target="_self"
| SIGN UP
- else
li.coins = "#{COINS_PREFIX}#{session_user.balance}#{COINS_SUFFIX}"
li
a.inlbutton href="/settings" target="_self"
img.icon src="/icons/settings.svg" alt="Settings"
li
a.inlbutton href="/profile" target="_self"
img.avatar src="#{session_user.avatar}" alt="Profile"
.content-container
div class="flash" onclick="this.remove();"
- flash.each do |k, v|
div class="flash-#{k}"
| #{v}
==yield