我正在使用dspace 6版本并尝试为dspace实现静态主页,当用户访问我的repo时,他/她将登陆此静态主页,并且此主页具有导航以查找发现的所有链接按项目链接浏览。
是否有人试过这个。
我找到了一些关于创建静态页面的信息,并做了同样的事情来匹配" /" url就像关于页面的静态一样,但是没有用。
以下是我在XMLUI中调用静态模板的代码
<xsl:when test="starts-with($request-uri, 'xmlui')">
<xsl:call-template name="homePage"/>
<!-- inject homepage for / url -->
<div class="hero-unit">
<h1>This is home page
We will add the banner here
</h1>
</div>
</xsl:when>
主页的内容是纯html和css,如下所示
<xsl:template name="homePage">
<!-- Banner -->
<h1>Welcome to our digital repo </h1>
<!-- other code here -->
</xsl:template>