Compare commits
2 Commits
b148167783
...
94d9680174
| Author | SHA1 | Date | |
|---|---|---|---|
| 94d9680174 | |||
| d9c0b6ade9 |
11
.vscode/settings.json
vendored
Normal file
11
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"liveServer.settings.port": 5500,
|
||||
"liveServer.settings.root": "/",
|
||||
"liveServer.settings.CustomBrowser": "chrome",
|
||||
"liveServer.settings.NoBrowser": false,
|
||||
"liveServer.settings.ignoreFiles": [
|
||||
".git",
|
||||
"**/*.sass",
|
||||
"node_modules"
|
||||
]
|
||||
}
|
||||
@@ -527,3 +527,17 @@ body {
|
||||
.section-title {
|
||||
animation: fadeInUp 0.6s ease-out;
|
||||
}
|
||||
|
||||
.card-image placeholder-img img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
|
||||
og-image.jpg img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
BIN
images/favicon.png
Normal file
BIN
images/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 106 KiB |
BIN
images/og-image.jpg
Normal file
BIN
images/og-image.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 33 MiB |
BIN
images/气温和降水月平均分布.png
Normal file
BIN
images/气温和降水月平均分布.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 62 KiB |
BIN
images/航拍图.png
Normal file
BIN
images/航拍图.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
25
index.html
25
index.html
@@ -6,26 +6,41 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<!-- SEO Meta Tags -->
|
||||
<title>雪域阳光方舟 - 轻索方舱 | 青藏高原医疗站毕业设计</title>
|
||||
<meta name="description" content="青藏高原轻钢拉索结构小型医疗站毕业设计作品,建筑面积200平方米,体现Approachable Luxury设计理念">
|
||||
<title>雪域阳光方舟 - 轻索方舱 | 高海拔环境乡村医疗服务基站设计与建造研究</title>
|
||||
<meta name="description" content="雪域阳光方舟 · 高海拔环境乡村医疗服务基站设计与建造研究">
|
||||
<meta name="keywords" content="建筑设计,毕业设计,青藏高原,轻钢结构,医疗站,拉索结构">
|
||||
<meta name="author" content="杨玉青">
|
||||
<meta name="author" content="杨雨晴">
|
||||
|
||||
<!-- Open Graph / Social Media Meta Tags -->
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://solarark.net/g2026/g4/">
|
||||
<meta property="og:title" content="雪域阳光方舟 - 轻索方舱">
|
||||
<meta property="og:description" content="青藏高原轻钢拉索结构医疗站 - Approachable Luxury设计理念">
|
||||
<meta property="og:image" content="images/og-image.jpg">
|
||||
<!-- <meta property="og:image" content="images/og-image.jpg"> -->
|
||||
|
||||
<!-- Base Path for Subdirectory Deployment -->
|
||||
<base href="/g2026/g4/">
|
||||
|
||||
<!-- Smart Path Detection - Must run before CSS/JS loading -->
|
||||
<script>
|
||||
(function() {
|
||||
const hostname = window.location.hostname;
|
||||
// 本地开发环境自动移除 base 标签
|
||||
if (hostname === 'localhost' || hostname === '127.0.0.1' || hostname === '') {
|
||||
const baseTag = document.querySelector('base');
|
||||
if (baseTag) {
|
||||
baseTag.remove();
|
||||
console.log('🔧 Local dev mode: base tag removed');
|
||||
}
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
|
||||
<!-- Stylesheet -->
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" type="image/png" href="images/favicon.png">
|
||||
<!-- <link rel="icon" type="image/png" href="images/favicon.png"> -->
|
||||
</head>
|
||||
<body>
|
||||
<!-- 顶部固定导航栏 -->
|
||||
|
||||
Reference in New Issue
Block a user