feat: 新增编辑页面和分享功能,优化链接跳转和样式
- 添加edit.html编辑页面及相关CSS样式 - 实现内容编辑区的富文本功能 - 为item-bottom组件添加分享功能,包括复制链接和微信转发 - 更新多个组件的链接跳转地址 - 优化CSS样式,包括圆角、阴影和hover效果 - 修复部分样式问题和布局错位 - 移除不再使用的section-index.html文件
This commit is contained in:
35
1/index.html
Normal file
35
1/index.html
Normal file
@@ -0,0 +1,35 @@
|
||||
{extend name="forum/base" /}
|
||||
|
||||
{block name="title"}{$title}{/block}
|
||||
|
||||
{block name="menu"}
|
||||
<a href="/">首页</a>
|
||||
<a href="/info/">资讯</a>
|
||||
<a href="/bbs/">论坛</a>
|
||||
|
||||
|
||||
{include file="forum/header" /}
|
||||
|
||||
|
||||
{/block}
|
||||
|
||||
{block name="left"}{/block}
|
||||
|
||||
{block name="main"}
|
||||
{volist name="list" id="vo"}
|
||||
<a href="/new/{$vo.id}">{$vo.title}</a><br />
|
||||
{$vo.content}
|
||||
{/volist}
|
||||
{/block}
|
||||
|
||||
{block name="right"}
|
||||
最新资讯:
|
||||
{volist name="news" id="new"}
|
||||
<a href="/new/{$new.id}">{$new.title}</a><br />
|
||||
{/volist}
|
||||
{/block}
|
||||
|
||||
{block name="footer"}
|
||||
{__block__}
|
||||
@寄托天下 版权所有
|
||||
{/block}
|
||||
Reference in New Issue
Block a user