Files
astuto/app/views/layouts/mailer.html.erb

17 lines
704 B
Plaintext
Raw Normal View History

2019-08-18 14:51:37 +02:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
2024-03-09 17:26:24 +01:00
<div style="margin: 16px auto; text-align: center;">
2024-03-24 12:54:02 +01:00
<a href="<%= get_url_for(method(:root_url)) %>">
<%= image_tag('https://raw.githubusercontent.com/astuto/astuto-assets/main/logo-64.png', alt: 'Astuto Logo', size: 64) %>
2024-03-09 17:26:24 +01:00
</a>
</div>
<div style="max-width: 580px; margin: 0 auto; border: 1px solid rgba(0, 0, 0, 0.125); border-radius: 0.25rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04),0 2px 4px -1px rgba(0, 0, 0, 0.03); padding: 24px; font-family: system-ui, sans-serif; font-size: 18px;">
<%= yield %>
</div>
2019-08-18 14:51:37 +02:00
</body>
</html>