mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
25 lines
637 B
Plaintext
25 lines
637 B
Plaintext
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta content='text/html; charset=utf-8' http-equiv='content-type' />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Hello, <%= @user.full_name %></h1>
|
||
|
|
<p>
|
||
|
|
There is a new reply by <b><%= @comment.user.full_name %></b> on your comment from post <b><%= @comment.post.title %></b>:
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
<i><%= @comment.body %></i>
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
<%= link_to "Click here", post_url(@comment.post) %> to have your say!
|
||
|
|
</p>
|
||
|
|
<p>
|
||
|
|
Have a great day!
|
||
|
|
</p>
|
||
|
|
</body>
|
||
|
|
<footer>
|
||
|
|
Annoyed? You can <%= link_to("turn off notifications here", edit_user_registration_url) %>.
|
||
|
|
</footer>
|
||
|
|
</html>
|