gpt4 book ai didi

gitlab - 如何更改 GitLab <title>?

转载 作者:行者123 更新时间:2023-12-03 23:30:02 25 4
gpt4 key购买 nike

找了好久都没找到。。想换个页面标题

<title>GitLab</title>

以包含更多信息。我似乎找不到任何地方可以做到这一点,因为我已经搜索了 github 并且没有看到任何答案。

最佳答案

当您考虑像 app/views/layouts/devise.html.haml 这样的页面时, 你看:

!!! 5
%html{ lang: "en"}
= render "layouts/head" <=====
%body.ui_basic.login-page
= render "layouts/flash"
.container
.content
%center
%h1 GitLab

这意味着 <head>部分 html 结果由 app/views/layouts/_head.html.haml 生成:
%head
%meta{charset: "utf-8"}
%title
= "#{title} | " if defined?(title)
GitLab

这就是 GitLab 的来源。

如本 haml reference document 中所述, 标题修改为 @title :
# file: app/controllers/movies_controller.rb

class MoviesController < ApplicationController
def index
@title = "Teen Wolf"
end
end

例如,GitLab 源“ app/controllers/users_controller.rb ” ' 修改标题。

但是我没有看到任何方法可以将默认标题作为参数放置,当 Controller 未定义标题时放置该标题。
所以你可能需要直接修改 _head.html.haml文件。

关于gitlab - 如何更改 GitLab &lt;title&gt;?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19945890/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com