-
Notifications
You must be signed in to change notification settings - Fork 1
/
_EmailLayout.vbhtml
38 lines (38 loc) · 1.7 KB
/
_EmailLayout.vbhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="@Helpers.GetBasePath()" />
@RenderSection("Meta", required:=False)
<link href="~/Mail_Templates/css/mail_template_style.css" rel="stylesheet" type="text/css" />
@RenderSection("HeadScripts", required:=False)
</head>
<body>
<div class="container">
<div class="mail_container">
<div class="mail-content">
<div class="header">
<img src="cid:mailbanner" alt="header" class="header_image" />
<!--<img src="~/Mail_Templates/MailTemplateImages/mailbanner.gif" alt="header" class="header_image" />-->
</div>
<div id="body">
@RenderSection("featured", required:=False)
<section class="content-wrapper main-content clear-fix">
@RenderBody()
</section>
</div>
<div class="clear"></div>
<footer class="footer">
<a href="http://wwwebconcepts.com" target="_blank"><img src="cid:@RazorSmartMailer.EmbeddedImages(1)" alt="WWWeb Concepts" width="32" height="32" class="logo-image" longdesc="http://wwwebconcepts.com" /></a>Razor Portfolio™ © @DateTime.Now.Year
<br />
<a href="http://wwwebconcepts.com" title="WWWeb Concepts Web Design, Development, SEO">WWWeb Concepts | Web Design, Development, SEO</a>
</footer>
@RenderSection("Scripts", required:=False)
</div>
</div>
</div>
</body>
</html>
@code
RazorSmartMailer.EmbeddedImages.Clear()
End Code