7833ad72fc
Added more images and updated others. The [code] tag is now enabled by default. Fixed some visual flaws in the profiles. Profile comments are no longer overriden by Tempra Conflux's post layout CSS. A lock emoji is now used instead of [Status|closed] blocks. Moved more inline CSS into the stylesheets. Usernames now link to the profiles in the Tempra Conflux, Cosmo and Cosmo Conflux themes.
105 lines
3.6 KiB
Go
105 lines
3.6 KiB
Go
/* This file was automatically generated by the software. Please don't edit it as your changes may be overwritten at any moment. */
|
|
package main
|
|
import "io"
|
|
import "strconv"
|
|
|
|
func init() {
|
|
template_topics_handle = template_topics
|
|
//o_template_topics_handle = template_topics
|
|
ctemplates = append(ctemplates,"topics")
|
|
tmpl_ptr_map["topics"] = &template_topics_handle
|
|
tmpl_ptr_map["o_topics"] = template_topics
|
|
}
|
|
|
|
func template_topics(tmpl_topics_vars TopicsPage, w io.Writer) {
|
|
w.Write([]byte(`<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>` + tmpl_topics_vars.Title + `</title>
|
|
<link href="/static/main.css" rel="stylesheet" type="text/css">
|
|
<script type="text/javascript" src="/static/jquery-1.12.3.min.js"></script>
|
|
<script type="text/javascript">
|
|
var session = "` + tmpl_topics_vars.CurrentUser.Session + `";
|
|
</script>
|
|
<script type="text/javascript" src="/static/global.js"></script>
|
|
<meta name="viewport" content="width=device-width,initial-scale = 1.0, maximum-scale=1.0,user-scalable=no" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="nav">
|
|
<div class="move_left">
|
|
<div class="move_right">
|
|
<ul>
|
|
<li class="menu_left menu_overview"><a href="/">Overview</a></li>
|
|
<li class="menu_left menu_forums"><a href="/forums/">Forums</a></li>
|
|
<li class="menu_left menu_topics"><a href="/">Topics</a></li>
|
|
<li class="menu_left menu_create_topic"><a href="/topics/create/">Create Topic</a></li>
|
|
`))
|
|
if tmpl_topics_vars.CurrentUser.Loggedin {
|
|
w.Write([]byte(`
|
|
<li class="menu_left menu_account"><a href="/user/edit/critical/">Account</a></li>
|
|
<li class="menu_left menu_profile"><a href="/user/` + strconv.Itoa(tmpl_topics_vars.CurrentUser.ID) + `">Profile</a></li>
|
|
`))
|
|
if tmpl_topics_vars.CurrentUser.Is_Super_Mod {
|
|
w.Write([]byte(`<li class="menu_left menu_account"><a href="/panel/">Panel</a></li>`))
|
|
}
|
|
w.Write([]byte(`
|
|
<li class="menu_left menu_logout"><a href="/accounts/logout?session=` + tmpl_topics_vars.CurrentUser.Session + `">Logout</a></li>
|
|
`))
|
|
} else {
|
|
w.Write([]byte(`
|
|
<li class="menu_left menu_register"><a href="/accounts/create/">Register</a></li>
|
|
<li class="menu_left menu_login"><a href="/accounts/login/">Login</a></li>
|
|
`))
|
|
}
|
|
w.Write([]byte(`
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div style="clear: both;"></div>
|
|
</div>
|
|
<div id="back"><div id="main">`))
|
|
if len(tmpl_topics_vars.NoticeList) != 0 {
|
|
for _, item := range tmpl_topics_vars.NoticeList {
|
|
w.Write([]byte(`<div class="alert">` + item + `</div>`))
|
|
}
|
|
}
|
|
w.Write([]byte(`
|
|
<div class="rowblock">
|
|
<div class="rowitem rowhead"><a>Topic List</a></div>
|
|
</div>
|
|
<div class="rowblock">
|
|
`))
|
|
if len(tmpl_topics_vars.ItemList) != 0 {
|
|
for _, item := range tmpl_topics_vars.ItemList {
|
|
w.Write([]byte(`<div class="rowitem passive" style="`))
|
|
if item.Avatar != "" {
|
|
w.Write([]byte(`background-image: url(` + item.Avatar + `);background-position: left;background-repeat: no-repeat;background-size: 64px;padding-left: 72px;`))
|
|
}
|
|
if item.Sticky {
|
|
w.Write([]byte(`background-color: #FFFFCC;`))
|
|
} else {
|
|
if item.Is_Closed {
|
|
w.Write([]byte(`background-color: #eaeaea;`))
|
|
}
|
|
}
|
|
w.Write([]byte(`">
|
|
<a href="/topic/` + strconv.Itoa(item.ID) + `">` + item.Title + `</a> `))
|
|
if item.Is_Closed {
|
|
w.Write([]byte(`<span class="username topic_status_e topic_status_closed" style="float: right;" title="Status: Closed">🔒︎</span>`))
|
|
}
|
|
w.Write([]byte(`
|
|
</div>
|
|
`))
|
|
}
|
|
} else {
|
|
w.Write([]byte(`<div class="rowitem passive">There aren't any topics yet.</div>`))
|
|
}
|
|
w.Write([]byte(`
|
|
</div>
|
|
<!--<link rel="stylesheet" href="https://use.fontawesome.com/8670aa03ca.css">-->
|
|
</div><div style="clear: both;"></div></div></div>
|
|
</body>
|
|
</html>`))
|
|
}
|