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.
 
 
 
 
 

36 lines
1006 B

.content-container#auction-view-container
#auction-view
- if auction.images.length >= 1
.slideshow-container
- auction.images.each do |image|
.slide-container
img src="#{image.url}"
.numbertext
| #{image.image_order+1}/#{auction.images.length}
.next-container
a.prev onclick="nextSlide(-1)" = "<"
a.next onclick="nextSlide(1)" = ">"
.slideshow-button-container
- auction.images.each do |image|
span.dot onclick="setSlide(#{image.image_order})"
#auctioninfo.card
h2 = auction.title
ul.list-container#category-list
- auction.categories.each do |category|
ul = category.name
- if auction.bids.length >= 1
.bid-container
- auctions.bids.each do |bid|
.bid
| BID
- else
p = "No bids! Be the first to bid on this item!"
script src="/js/slides.js" type="text/javascript"