2021-03-05 09:12:52 -08:00
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
|
<meta content="width=device-width, initial-scale=1" name="viewport"/>
|
|
|
|
|
<title>
|
|
|
|
|
<%= 'Email' %>
|
|
|
|
|
</title>
|
|
|
|
|
<meta content="Snap!Con -- A conference all about Snap!, a programing language from UC Berkeley." name="description"/>
|
|
|
|
|
<meta content="Michael Ball, Brian Harvey, Jens Moenig, Bernat Romagosa, Dan Garcia, Lauren Mock" name="author"/>
|
|
|
|
|
<%= stylesheet_link_tag "mailbot" %>
|
|
|
|
|
</head>
|
2021-04-15 20:11:40 -07:00
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<% if @conference.present? %>
|
|
|
|
|
<div id="border" style="background-color: <%= conference_color(@conference) %>">
|
|
|
|
|
<% else %>
|
|
|
|
|
<div id="border" style="background-color: #003262">
|
|
|
|
|
<% end %>
|
2021-03-05 09:12:52 -08:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-2">
|
2021-05-03 03:17:28 -07:00
|
|
|
<% if false && @conference.present? %>
|
2021-03-12 00:14:29 -08:00
|
|
|
<%= image_tag(conference_logo_url(@conference), style: "display:block;height:70px;width:auto;", alt: @conference.title + ' logo') %>
|
2021-04-15 20:11:40 -07:00
|
|
|
<% else %>
|
|
|
|
|
<%= image_tag(Organization.first.picture_url, style: "display:block;height:70px;width:auto;", alt: ENV['OSEM_NAME'] + ' logo') %>
|
2021-03-05 09:12:52 -08:00
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|