mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
优化首页显示效果
This commit is contained in:
parent
87f0f2faf8
commit
ddbd33a38e
@ -23,6 +23,11 @@ type BaseController struct {
|
||||
func (c *BaseController) Prepare() {
|
||||
c.Data["SiteName"] = "MinDoc"
|
||||
c.Data["Member"] = models.Member{}
|
||||
controller,action := c.GetControllerAndAction()
|
||||
|
||||
c.Data["ActionName"] = action
|
||||
c.Data["ControllerName"] = controller
|
||||
|
||||
c.EnableAnonymous = false
|
||||
c.EnableDocumentHistory = false
|
||||
|
||||
|
@ -65,6 +65,10 @@ textarea{
|
||||
white-space:nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.manual-header .navbar-nav li.active a{
|
||||
background-color: #009a61;
|
||||
color: #ffffff;
|
||||
}
|
||||
.manual-reader .slidebar {
|
||||
margin: 5px 10px 0 0;
|
||||
}
|
||||
|
@ -10,10 +10,10 @@
|
||||
</a>
|
||||
<nav class="collapse navbar-collapse col-sm-10">
|
||||
<ul class="nav navbar-nav">
|
||||
<li>
|
||||
<li {{if eq .ControllerName "HomeController"}}class="active"{{end}}>
|
||||
<a href="{{urlfor "HomeController.Index" }}" title="首页">首页</a>
|
||||
</li>
|
||||
<li>
|
||||
<li {{if eq .ControllerName "LabelController"}}class="active"{{end}}>
|
||||
<a href="{{urlfor "LabelController.List" }}" title="标签">标签</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user