Old high school files. Lessson notes/codes/projects etc.
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.
 
 
 
 
 
 
hsf/wesweb01/evil_infosite/views/person.slim

30 lines
871 B

.persons-container
- persondata.each do |data|
article.person
.info
h1 #{data[:fname]} #{data[:lname]}
ul
li
label Email:
a href="mailto:#{data[:email]}" = data[:email]
li
label Age:
span #{data[:age]}
li
label IPv4 Address:
a href="https://api.iplocation.net/?ip=#{data[:ipv4]}" target="_blank" = data[:ipv4]
li
label Movie title:
a href="https://www.imdb.com/find?q=#{data[:movie_title]}" target="_blank" = data[:movie_title]
li
label Role:
span #{data[:role]}
li
label Visiting Frequency:
span #{data[:freq]}
li
label Gender:
span #{data[:gender]}
img.avatar src="#{data[:avatar_url]}"