我想用簡介,入門,下載,FAQ等頁面構建一個簡單的靜態網站。頂部也會有導航鏈接。這是你到處看到的基本佈局。如何使用Webpack自動創建小型網站的html header?
What I have done a year ago只是一個複製和粘貼。所以每個.html頁面都有相同的標籤代碼。
<nav class="text-center">
<a href="index.html">Introduction</a> |
<a href="getting-started.html">Getting Started</a> |
<a href="reference.html">Reference</a> |
<a href="demo.html">Demo</a> |
<a href="faq.html">FAQ</a>
<span id="get"><a href="https://www.assetstore.unity3d.com/#!/content/51095" target="_blank">Get Introloop</a></span>
<br>
</nav>
然後有很多的負責人,也就是幾乎的相同,但來自網頁有點不同的頁面。
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,600' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Cutive+Mono' rel='stylesheet' type='text/css'>
<meta name="keywords" content="Introloop - Easily play looping music with intro section. (Unity plugin)"/>
<meta charset="utf-8">
<meta property="og:title" content="Introloop - Demo"/>
<meta property="og:description" content="Let's see how well it performs by yourself!">
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://www.exceed7.com/introloop/demo.html"/>
<meta property="og:image" content="http://www.exceed7.com/introloop/img/HeaderImage.png"/>
<meta property="og:site_name" content="Introloop" />
<title>Introloop - Easily play looping music with intro section (Unity Plugin)</title>
<link rel="stylesheet" href="css/main.css">
</head>
讀我寫了一年前的代碼,我覺得這是不利於可維護性。我正在考慮重做該網站,所以我希望目前這樣做。但我似乎無法從Google搜索中獲得解決方案,因爲很難獲得正確的搜索查詢...
當然,現在我們使用某種構建工具,並且我對學習Webpack非常感興趣。我想知道什麼是通常的工作流程,使這種小型模板網站?
我想加入的其他工具是npm + Babel + cssnext +任何Bootstrap alternatve + no gulp,以防萬一它們與可能的解決方案重疊。沒有Bootstrap和沒有Gulp的原因是,我一直在使用它們很長一段時間,並希望探索其他替代品,我猜現在可以使用
也看Vue.js /語義UI/UIKit,對我來說都是全新的。但Vue.js看起來太等反應,這我的網站只是一個一般的信息網站和似乎並不需要任何活動JS到DOM更新..