在网站模板中重命名 .html 页面?

Renaming a .html page in website templates?

提问人:frontendciyim 提问时间:8/18/2023 最后编辑:frontendciyim 更新时间:8/18/2023 访问量:37

问:

我从互联网上购买了一个免费的仪表板网站模板,我正在尝试根据我自己的网站实施它。

我正在尝试创建一个导航栏,我想在单击时打开相关页面。

我通过在模板中完全复制名为 datatable.html 的 html 文件的内容创建了一个新文件,并将其命名为 parcel_list.html。

但是没有应用样式,它看起来像这样

我该如何解决这个问题?

我不知道该怎么办

datatable.html 看起来像这样

文件夹结构器

文件夹结构 全部

数据表 .html 样式

HTML CSS 模板 Bootstrap-5 仪表板

评论

0赞 iamrishan 8/18/2023
您一定错过了添加 css(为新的 .html 页面设置样式属性)
0赞 frontendciyim 8/18/2023
但我完全复制了数据表.html页面。那里的样式文件不是也适用于parcel.list.html吗?
0赞 CBroe 8/18/2023
“那里的样式文件不是也适用于parcel.list.html吗?”- 如果仍然可以找到它们。最有可能的是,它们是使用相对 URL 嵌入的,并且如果您现在查看的内容的 URL 具有与您用于查看原始内容的文件夹“深度”不同的文件夹“深度”,则生成的绝对样式表 URL 现在将是错误的。parcel_list.html
0赞 frontendciyim 8/18/2023
那么,我现在到底应该寻找或修复什么呢?
0赞 frontendciyim 8/18/2023
这是我的第一个模板任务,对不起我的无知:(

答:

0赞 iamrishan 8/18/2023 #1
I have looked in to the template
it is a node js project with sass styling
that is why the styling not working
you must have nodejs installed on your system to run nodejs projects locally
then in prject terminal 'npm install' then 'npm run dev' 
(this will open the project in right way with styles and all)

文档在这里给出: https://github.com/puikinsh/Adminator-admin-dashboard#getting-started

评论

0赞 frontendciyim 8/18/2023
没错,我还安装了 nodejs 并安装了 npm install。该项目在本地运行良好,没有问题,但是我复制了现有的 .html 文件,当我重命名它们时会导致问题。
0赞 frontendciyim 8/18/2023
实际上我会哭:'(