65 lines
2.5 KiB
HTML
65 lines
2.5 KiB
HTML
<!DOCTYPE html >
|
|
<%~set search_widget = 1%>
|
|
<html lang="en">
|
|
<head>
|
|
<title><%cat_full_name%>: <%forum_name%>: <%post_subject%>: Thread Watched!</title>
|
|
<meta http-equiv="refresh" content='6;url=<%GForum::SEO::url(type => "post", id => $post_id)%>' />
|
|
<%include include_common_head.html%>
|
|
</head>
|
|
|
|
<%~set content_header_title = 'Thread Watched'%>
|
|
|
|
<body class="page-<%page_id%>">
|
|
<div class="container-b">
|
|
<%include include_header.html%>
|
|
|
|
<div class="main">
|
|
<div class="contentwrapper clearfix">
|
|
<div class="sidebar">
|
|
<%include include_sidebar.html%>
|
|
</div>
|
|
|
|
<%~set content_header_title = $forum_name%>
|
|
<%~init array breadcrumbs%><%init hash breadcrumbs.0%><%init hash breadcrumbs.1%>
|
|
<%~set breadcrumbs.0.name = $forum_name%>
|
|
<%~set breadcrumbs.0.url = GForum::SEO::url(params => "forum=$forum_id")%>
|
|
<%~set breadcrumbs.1.name = $root_post_subject%>
|
|
|
|
<%include include_breadcrumb.html%>
|
|
<div class="content"><%-- start content--%>
|
|
<%include include_content_header.html%>
|
|
|
|
<p>
|
|
The thread <%GForum::Category::full_name_linked($cat_id, ": ")%>:
|
|
<a href='<%GForum::SEO::url(type => "forum", id => $forum_id)%>'><%forum_name%></a>:
|
|
<a href='<%GForum::SEO::url(type => "post", id => $post_id)%>'><b><%post_subject%></b></a>
|
|
<%if user_status%><%set url_username = escape_js $user_username%><%else%><%set url_username = $user_id%><%endif%>
|
|
<i>(started by <%if user_id%><a href='<%GForum::SEO::url(params => "username=$url_username")%>'><%nbsp post_username%></a><%else%><%nbsp post_username%><%endif%>)</i>
|
|
has been added to your watched threads list.
|
|
<a href='<%GForum::SEO::url(params => "do=user_profile_notifications&action=threads")%>'>Click here</a> to see a summary of all threads you have watched.
|
|
</p>
|
|
<p>
|
|
You will be automatically returned to the thread shortly, or choose the forum you wish to visit:
|
|
</p>
|
|
|
|
<form action="<%GForum::SEO::url()%>">
|
|
<%hidden_form%>
|
|
<div class="row">
|
|
<select name="jump">
|
|
<%GForum::Forum::jump_list($forum_id)%>
|
|
</select>
|
|
<input type="submit" value="Jump to forum" class="btn" />
|
|
</div>
|
|
</form>
|
|
|
|
</div><%-- end content --%>
|
|
</div><%-- end contentwrapper --%>
|
|
</div><%-- end main --%>
|
|
|
|
<%include include_footer.html%>
|
|
</div>
|
|
|
|
</body>
|
|
<%~include include_global_js.html%>
|
|
</html>
|