mirror of
https://github.com/seigler/dashdev-website
synced 2025-07-26 22:36:09 +00:00
update minified
This commit is contained in:
parent
bd37cf00b7
commit
5f71c5aaea
17 changed files with 58 additions and 1668 deletions
38
build.js
38
build.js
|
@ -34,7 +34,7 @@ templateConfig = {
|
|||
// metalsmith
|
||||
var Metalsmith = require('metalsmith');
|
||||
|
||||
// modules
|
||||
// plugins
|
||||
var markdown = require('metalsmith-markdown');
|
||||
var markdownPrecompiler = require('metalsmith-markdown-precompiler');
|
||||
var collections = require('metalsmith-collections');
|
||||
|
@ -45,9 +45,16 @@ var discoverPartials = require('metalsmith-discover-partials');
|
|||
var paths = require('metalsmith-paths');
|
||||
var sitemap = require('metalsmith-sitemap');
|
||||
var assets = require('metalsmith-assets');
|
||||
var wordcount = require("metalsmith-word-count");
|
||||
|
||||
// plugins dependend on devbuild- or production-build
|
||||
var htmlmin = devBuild ? null : require('metalsmith-html-minifier');
|
||||
var browsersync = devBuild ? require('metalsmith-browser-sync') : null;
|
||||
|
||||
moremeta = require(dir.lib + 'metalsmith-moremeta');
|
||||
// custom plugins
|
||||
var setdate = require(dir.lib + 'metalsmith-setdate');
|
||||
var moremeta = require(dir.lib + 'metalsmith-moremeta');
|
||||
var debug = consoleLog ? require(dir.lib + 'metalsmith-debug') : null;
|
||||
|
||||
console.log((devBuild ? 'Development' : 'Production'), 'build, version', pkg.version);
|
||||
|
||||
|
@ -66,6 +73,7 @@ var metalsmith = Metalsmith(__dirname)
|
|||
// source_path: './box/'
|
||||
// }))
|
||||
.use(paths())
|
||||
.use(setdate()) // set date on every page if not set in front-matter
|
||||
.use(collections({ // determine page collection/taxonomy
|
||||
page: {
|
||||
pattern: '**/index.*',
|
||||
|
@ -104,6 +112,9 @@ var metalsmith = Metalsmith(__dirname)
|
|||
.use(permalinks({ // generate permalinks
|
||||
pattern: ':mainCollection/:title'
|
||||
}))
|
||||
.use(wordcount({ // word count
|
||||
raw: true
|
||||
}))
|
||||
.use(moremeta()) // determine root paths and navigation, TODO check remove
|
||||
// .use(inplace({
|
||||
// //engineOptions: {},
|
||||
|
@ -114,19 +125,20 @@ var metalsmith = Metalsmith(__dirname)
|
|||
pattern: `**/index.*`,
|
||||
default: 'page.hbs'
|
||||
}))
|
||||
// .use(layouts({
|
||||
// //engineOptions: {},
|
||||
// pattern: `start/**`,
|
||||
// default: 'article.hbs'
|
||||
// }))
|
||||
// .use(layouts({
|
||||
// //engineOptions: {},
|
||||
// pattern: `article/**`,
|
||||
// default: 'article.hbs'
|
||||
// }))
|
||||
// .use(layouts({
|
||||
// //engineOptions: {},
|
||||
// pattern: `start/**`,
|
||||
// default: 'article.hbs'
|
||||
// }))
|
||||
// .use(layouts({
|
||||
// //engineOptions: {},
|
||||
// pattern: `article/**`,
|
||||
// default: 'article.hbs'
|
||||
// }))
|
||||
|
||||
if (htmlmin) metalsmith.use(htmlmin()); // minify production HTML
|
||||
|
||||
// if (debug) metalsmith.use(debug()); // output page debugging information
|
||||
if (debug) metalsmith.use(debug()); // output page debugging information
|
||||
|
||||
if (browsersync) metalsmith.use(browsersync({ // start test server
|
||||
server: dir.dest,
|
||||
|
|
|
@ -1,113 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Draft article - dashdev-website</title>
|
||||
<meta name="description" content="An unpublished article." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/" class="active">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Draft article</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>This is a draft article.</p>
|
||||
<p>It will never appear in the site unless the <code>publish</code> front-matter is set to <code>published</code> or a date which has passed.</p>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../article/future/" class="back">« back: Future publication</a></li></p>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../../article/usage/">Usage options</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/gotchas/">Gotchas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/gulp/">Gulp</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/future/">Future publication</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Draft article</strong>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Draft article - dashdev-website</title><meta name=description content="An unpublished article."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ >Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ class=active>Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Draft article</h1><p class=articleinfo>Published 26 February 2020, 26 words, 1-minute read</p><p>This is a draft article.</p><p>It will never appear in the site unless the <code>publish</code> front-matter is set to <code>published</code> or a date which has passed.</p><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/ class=back>« back: Articles</a></li><p></p><li><a href=/dashdev-suite/dashdev-website/master/build/article/usage/ class=next>next: Usage options »</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><strong>Draft article</strong></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/usage/ >Usage options</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gotchas/ >Gotchas</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gulp/ >Gulp</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/future/ >Future publication</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,113 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Future publication - dashdev-website</title>
|
||||
<meta name="description" content="This article will be published after 1 March, 2016." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/" class="active">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Future publication</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>This article will only appear if the site is built is run after 1 March, 2016.</p>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../article/gulp/" class="back">« back: Gulp</a></li></p>
|
||||
|
||||
<li><a href="../../article/draft/" class="next">next: Draft article »</a></li></p>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../../article/usage/">Usage options</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/gotchas/">Gotchas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/gulp/">Gulp</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Future publication</strong>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/draft/">Draft article</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Future publication - dashdev-website</title><meta name=description content="This article will be published after 1 March, 2016."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ >Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ class=active>Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Future publication</h1><p class=articleinfo>Published 1 March 2016, 16 words, 1-minute read</p><p>This article will only appear if the site is built is run after 1 March, 2016.</p><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/gulp/ class=back>« back: Gulp</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/draft/ >Draft article</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/usage/ >Usage options</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gotchas/ >Gotchas</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gulp/ >Gulp</a></li><li><strong>Future publication</strong></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,120 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Gotchas - dashdev-website</title>
|
||||
<meta name="description" content="Issues and workarounds when using Metalsmith." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/" class="active">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Gotchas</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>Not everything is necessarily straight-forward in the Metalsmith world…</p>
|
||||
<h2 id="incompatible-plugins">Incompatible plugins</h2>
|
||||
<p>Some plugins clash with another. For example, <a href="https://github.com/radiovisual/metalsmith-rootpath">metalsmith-rootpath</a> which calculates relative roots does not play nicely with <a href="https://github.com/segmentio/metalsmith-permalinks">metalsmith-permalinks</a> which creates custom folder structures.</p>
|
||||
<p><em>Note: <code>lib/metalsmith-moremeta</code> in this project sets a correct <code>root</code> variable whether permalinks are used or not.</em></p>
|
||||
<h2 id="plugin-order-can-be-critical">Plugin order can be critical</h2>
|
||||
<p>One plugins may depend on another or conflict if placed the wrong way around. For example, the RSS-generating <a href="https://github.com/hurrymaplelad/metalsmith-feed">metalsmith-feed</a> plugin must be called after <a href="https://github.com/superwolff/metalsmith-layouts">metalsmith-layouts</a> to ensure <code>rss.xml</code> is not generated within a page template.</p>
|
||||
<h2 id="browsersync-build-issues">Browsersync build issues</h2>
|
||||
<p>When <a href="https://www.browsersync.io/">Browsersync</a> is running and files are edited, collections are re-parsed but the old data remains. This can cause menus and next/back links to be incorrect. To fix this, stop and restart the build.</p>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../article/usage/" class="back">« back: Usage options</a></li></p>
|
||||
|
||||
<li><a href="../../article/" class="next">next: Articles »</a></li></p>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../../article/usage/">Usage options</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Gotchas</strong>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/gulp/">Gulp</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/future/">Future publication</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/draft/">Draft article</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Gotchas - dashdev-website</title><meta name=description content="Issues and workarounds when using Metalsmith."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ >Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ class=active>Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Gotchas</h1><p class=articleinfo>Published 10 March 2016, 127 words, 1-minute read</p><p>Not everything is necessarily straight-forward in the Metalsmith world…</p><h2 id=incompatible-plugins>Incompatible plugins</h2><p>Some plugins clash with another. For example, <a href=https://github.com/radiovisual/metalsmith-rootpath>metalsmith-rootpath</a> which calculates relative roots does not play nicely with <a href=https://github.com/segmentio/metalsmith-permalinks>metalsmith-permalinks</a> which creates custom folder structures.</p><p><em>Note: <code>lib/metalsmith-moremeta</code> in this project sets a correct <code>root</code> variable whether permalinks are used or not.</em></p><h2 id=plugin-order-can-be-critical>Plugin order can be critical</h2><p>One plugins may depend on another or conflict if placed the wrong way around. For example, the RSS-generating <a href=https://github.com/hurrymaplelad/metalsmith-feed>metalsmith-feed</a> plugin must be called after <a href=https://github.com/superwolff/metalsmith-layouts>metalsmith-layouts</a> to ensure <code>rss.xml</code> is not generated within a page template.</p><h2 id=browsersync-build-issues>Browsersync build issues</h2><p>When <a href=https://www.browsersync.io/ >Browsersync</a> is running and files are edited, collections are re-parsed but the old data remains. This can cause menus and next/back links to be incorrect. To fix this, stop and restart the build.</p><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/usage/ class=back>« back: Usage options</a></li><p></p><li><a href=/dashdev-suite/dashdev-website/master/build/article/gulp/ class=next>next: Gulp »</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/draft/ >Draft article</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/usage/ >Usage options</a></li><li><strong>Gotchas</strong></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gulp/ >Gulp</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/future/ >Future publication</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,65 +1,4 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Gulp - dashdev-website</title>
|
||||
<meta name="description" content="Do you need Gulp? Can it be integrated with Metalsmith?" />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/" class="active">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Gulp</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>Metalsmith has plugins for <a href="https://github.com/stevenschobert/metalsmith-sass">CSS pre-processing with Sass</a>, <a href="https://github.com/ahmadnassri/metalsmith-imagemin">image minification</a>, <a href="https://github.com/aymericbeaumet/metalsmith-concat">file concatenation</a>, <a href="https://github.com/ksmithut/metalsmith-uglify">uglification</a> and more. The build code will be familiar to anyone with <a href="http://gulpjs.com/">Gulp</a> experience.</p>
|
||||
<h2 id="do-you-still-need-gulp">Do you still need Gulp?</h2>
|
||||
<p>Metalsmith is often enough for simpler workflows. However, Gulp has a more extensive range of plugins and permits complex build activities such as linting and <a href="http://postcss.org/">PostCSS</a> processing with <a href="https://github.com/postcss/autoprefixer">auto-prefixer</a>.</p>
|
||||
<p>Metalsmith can be used within any Gulp task, e.g.</p>
|
||||
<pre><code>var
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Gulp - dashdev-website</title><meta name=description content="Do you need Gulp? Can it be integrated with Metalsmith?"><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ >Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ class=active>Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Gulp</h1><p class=articleinfo>Published 2 March 2016, 141 words, 1-minute read</p><p>Metalsmith has plugins for <a href=https://github.com/stevenschobert/metalsmith-sass>CSS pre-processing with Sass</a>, <a href=https://github.com/ahmadnassri/metalsmith-imagemin>image minification</a>, <a href=https://github.com/aymericbeaumet/metalsmith-concat>file concatenation</a>, <a href=https://github.com/ksmithut/metalsmith-uglify>uglification</a> and more. The build code will be familiar to anyone with <a href=http://gulpjs.com/ >Gulp</a> experience.</p><h2 id=do-you-still-need-gulp>Do you still need Gulp?</h2><p>Metalsmith is often enough for simpler workflows. However, Gulp has a more extensive range of plugins and permits complex build activities such as linting and <a href=http://postcss.org/ >PostCSS</a> processing with <a href=https://github.com/postcss/autoprefixer>auto-prefixer</a>.</p><p>Metalsmith can be used within any Gulp task, e.g.</p><pre><code>var
|
||||
gulp = require('gulp'),
|
||||
metalsmith = require('metalsmith'),
|
||||
publish = require('metalsmith-publish'),
|
||||
|
@ -78,60 +17,4 @@ gulp.task('html', function() {
|
|||
if (err) throw err;
|
||||
});
|
||||
|
||||
});</code></pre><p>Further Gulp tasks can then be added. Note <code>.clean(false)</code> ensures Metalsmith never wipes the build folder when other tasks are active.</p>
|
||||
<p>There are a number of Gulp/Metalsmith integration plugins although they are rarely necessary.</p>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../article/" class="back">« back: Articles</a></li></p>
|
||||
|
||||
<li><a href="../../article/future/" class="next">next: Future publication »</a></li></p>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../../article/usage/">Usage options</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/gotchas/">Gotchas</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Gulp</strong>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/future/">Future publication</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/draft/">Draft article</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
});</code></pre><p>Further Gulp tasks can then be added. Note <code>.clean(false)</code> ensures Metalsmith never wipes the build folder when other tasks are active.</p><p>There are a number of Gulp/Metalsmith integration plugins although they are rarely necessary.</p><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/gotchas/ class=back>« back: Gotchas</a></li><p></p><li><a href=/dashdev-suite/dashdev-website/master/build/article/future/ class=next>next: Future publication »</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/draft/ >Draft article</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/usage/ >Usage options</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gotchas/ >Gotchas</a></li><li><strong>Gulp</strong></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/future/ >Future publication</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,150 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Articles - dashdev-website</title>
|
||||
<meta name="description" content="A set of articles published on this site." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/" class="active">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Articles</h1>
|
||||
|
||||
|
||||
<p>A selection of articles is available in this section.</p>
|
||||
|
||||
|
||||
|
||||
<ul class="pagelist">
|
||||
|
||||
<li>
|
||||
<a href="../article/usage/">
|
||||
|
||||
<h2>Usage options</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>What type of project could benefit from Metalsmith?</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/gotchas/">
|
||||
|
||||
<h2>Gotchas</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>Issues and workarounds when using Metalsmith.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/gulp/">
|
||||
|
||||
<h2>Gulp</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>Do you need Gulp? Can it be integrated with Metalsmith?</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/future/">
|
||||
|
||||
<h2>Future publication</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>This article will be published after 1 March, 2016.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/draft/">
|
||||
|
||||
<h2>Draft article</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>An unpublished article.</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../article/usage/">Usage options</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/gotchas/">Gotchas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/gulp/">Gulp</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/future/">Future publication</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/draft/">Draft article</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Articles - dashdev-website</title><meta name=description content="A set of articles published on this site."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ >Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ class=active>Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Articles</h1><p>A selection of articles is available in this section.</p><ul class=pagelist><li><a href=/dashdev-suite/dashdev-website/master/build/article/draft/ ><h2>Draft article</h2><p class=articleinfo>26 February 2020</p><p>An unpublished article.</p></a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/usage/ ><h2>Usage options</h2><p class=articleinfo>14 March 2016</p><p>What type of project could benefit from Metalsmith?</p></a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gotchas/ ><h2>Gotchas</h2><p class=articleinfo>10 March 2016</p><p>Issues and workarounds when using Metalsmith.</p></a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gulp/ ><h2>Gulp</h2><p class=articleinfo>2 March 2016</p><p>Do you need Gulp? Can it be integrated with Metalsmith?</p></a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/future/ ><h2>Future publication</h2><p class=articleinfo>1 March 2016</p><p>This article will be published after 1 March, 2016.</p></a></li></ul></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/draft/ >Draft article</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/usage/ >Usage options</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gotchas/ >Gotchas</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gulp/ >Gulp</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/future/ >Future publication</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,120 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Usage options - dashdev-website</title>
|
||||
<meta name="description" content="What type of project could benefit from Metalsmith?" />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/" class="active">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Usage options</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>Metalsmith could be used to create any number of resources, including:</p>
|
||||
<ul>
|
||||
<li>a fast static website with minimal server-side requirements</li>
|
||||
<li>technical documentation</li>
|
||||
<li>an eBook</li>
|
||||
<li>application prototypes</li>
|
||||
<li>build tools or project scaffolding</li>
|
||||
</ul>
|
||||
<p>The markdown files can be converted to other files types using plugins such as <a href="https://github.com/arve0/metalsmith-pandoc">metalsmith-pandoc</a> or <a href="https://github.com/jjclark1982/metalsmith-pdf">metalsmith-pdf</a>.</p>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
|
||||
<li><a href="../../article/gotchas/" class="next">next: Gotchas »</a></li></p>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<strong>Usage options</strong>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/gotchas/">Gotchas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/gulp/">Gulp</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/future/">Future publication</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/draft/">Draft article</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Usage options - dashdev-website</title><meta name=description content="What type of project could benefit from Metalsmith?"><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ >Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ class=active>Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Usage options</h1><p class=articleinfo>Published 14 March 2016, 47 words, 1-minute read</p><p>Metalsmith could be used to create any number of resources, including:</p><ul><li>a fast static website with minimal server-side requirements</li><li>technical documentation</li><li>an eBook</li><li>application prototypes</li><li>build tools or project scaffolding</li></ul><p>The markdown files can be converted to other files types using plugins such as <a href=https://github.com/arve0/metalsmith-pandoc>metalsmith-pandoc</a> or <a href=https://github.com/jjclark1982/metalsmith-pdf>metalsmith-pdf</a>.</p><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/draft/ class=back>« back: Draft article</a></li><p></p><li><a href=/dashdev-suite/dashdev-website/master/build/article/gotchas/ class=next>next: Gotchas »</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/article/draft/ >Draft article</a></li><li><strong>Usage options</strong></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gotchas/ >Gotchas</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/gulp/ >Gulp</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/future/ >Future publication</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,74 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Contact - dashdev-website</title>
|
||||
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../contact/" class="active">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Contact</h1>
|
||||
|
||||
<p>Any questions?</p>
|
||||
<p>Contact us at <a href="">Dash DApp Developers Discord</a></p>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, page template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Contact - dashdev-website</title><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ >Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ >Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ class=active>Contact</a></li></ul></nav></div></header><main><div class=content><article><h1>Contact</h1><p>Any questions?</p><p>Contact us at <a href="">Dash DApp Developers Discord</a></p></article></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, page template</p></footer></body></html>
|
|
@ -1,84 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>dashdev-website</title>
|
||||
<meta name="description" content="A static HTML-only website generated using Metalsmith.io." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="" class="active">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="start/">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="article/">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
|
||||
<p><a href="http://dash.org/"><img src="/images/nodejs.png" alt="Node.js"></a></p>
|
||||
<p>This is a static website generated using the Node.js-powered <strong><a href="http://metalsmith.io">Metalsmith</a></strong> and various published and custom plugins.</p>
|
||||
<p>This is a demonstration rather than a recommended way to build a static site. Your requirements will be different. Please use any part of the code as you wish.</p>
|
||||
<h2 id="where-could-you-use-metalsmith">Where could you use Metalsmith?</h2>
|
||||
<p>Metalsmith could be used to create:</p>
|
||||
<ul>
|
||||
<li>a fast static website with minimal server-side requirements</li>
|
||||
<li>technical documentation</li>
|
||||
<li>an eBook</li>
|
||||
<li>application prototypes</li>
|
||||
<li>build tools or project scaffolding</li>
|
||||
</ul>
|
||||
<p><a href="start/">Get started…</a></p>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, page template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>dashdev-website</title><meta name=description content="A static HTML-only website generated using Metalsmith.io."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ class=active>Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ >Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ >Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main><div class=content><article><p><a href=http://dash.org/ ><img src=/images/nodejs.png alt=Node.js></a></p><p>This is a static website generated using the Node.js-powered <strong><a href=http://metalsmith.io>Metalsmith</a></strong> and various published and custom plugins.</p><p>This is a demonstration rather than a recommended way to build a static site. Your requirements will be different. Please use any part of the code as you wish.</p><h2 id=where-could-you-use-metalsmith>Where could you use Metalsmith?</h2><p>Metalsmith could be used to create:</p><ul><li>a fast static website with minimal server-side requirements</li><li>technical documentation</li><li>an eBook</li><li>application prototypes</li><li>build tools or project scaffolding</li></ul><p><a href=start/ >Get started…</a></p></article></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, page template</p></footer></body></html>
|
|
@ -1,17 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
|
||||
<url> <loc>http://127.0.0.1/</loc> <priority>1.0</priority> </url>
|
||||
<url> <loc>http://127.0.0.1/article/draft/</loc> </url>
|
||||
<url> <loc>http://127.0.0.1/article/future/</loc> </url>
|
||||
<url> <loc>http://127.0.0.1/article/gotchas/</loc> </url>
|
||||
<url> <loc>http://127.0.0.1/article/gulp/</loc> </url>
|
||||
<url> <loc>http://127.0.0.1/article/</loc> <priority>0.8</priority> </url>
|
||||
<url> <loc>http://127.0.0.1/article/usage/</loc> </url>
|
||||
<url> <loc>http://127.0.0.1/contact/</loc> <priority>0.7</priority> </url>
|
||||
<url> <loc>http://127.0.0.1/start/build/</loc> <priority>0.5</priority> </url>
|
||||
<url> <loc>http://127.0.0.1/start/</loc> <priority>0.9</priority> </url>
|
||||
<url> <loc>http://127.0.0.1/start/installation/</loc> <priority>0.5</priority> </url>
|
||||
<url> <loc>http://127.0.0.1/start/page-definitions/</loc> <priority>0.3</priority> </url>
|
||||
<url> <loc>http://127.0.0.1/start/plugins/</loc> <priority>0.3</priority> </url>
|
||||
<url> <loc>http://127.0.0.1/start/site-files/</loc> <priority>0.4</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/</loc> <priority>1.0</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/article/draft/</loc> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/article/future/</loc> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/article/gotchas/</loc> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/article/gulp/</loc> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/article/</loc> <priority>0.8</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/article/usage/</loc> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/contact/</loc> <priority>0.7</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/start/build/</loc> <priority>0.5</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/start/</loc> <priority>0.9</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/start/installation/</loc> <priority>0.5</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/start/page-definitions/</loc> <priority>0.3</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/start/plugins/</loc> <priority>0.3</priority> </url>
|
||||
<url> <loc>https://rawgit.com/dashdev-suite/dashdev-website/master/build/start/site-files/</loc> <priority>0.4</priority> </url>
|
||||
</urlset>
|
|
@ -1,117 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Build - dashdev-website</title>
|
||||
<meta name="description" content="How to build the static site using Metalsmith." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/" class="active">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Build</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>To build and launch the site in a test server using <a href="https://www.browsersync.io/">Browsersync</a>:</p>
|
||||
<pre><code>npm start</code></pre><p>(Stop the server with <code>Ctrl+C</code>.)</p>
|
||||
<p>To build the site for production and compress HTML files:</p>
|
||||
<pre><code>npm run production</code></pre><p>The site is built in the <code>/build</code> folder.</p>
|
||||
<p>Note you may want to change the <code>siteMeta.domain</code> and <code>siteMeta.rootpath</code> on lines 52 and 53 of <code>./build.js</code>.</p>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../start/installation/" class="back">« back: Installation</a></li></p>
|
||||
|
||||
<li><a href="../../start/site-files/" class="next">next: Site files »</a></li></p>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../../start/installation/">Installation</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Build</strong>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/site-files/">Site files</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/page-definitions/">Page definitions</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/plugins/">Custom plugins</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Build - dashdev-website</title><meta name=description content="How to build the static site using Metalsmith."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ class=active>Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ >Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Build</h1><p class=articleinfo>Published 26 February 2020, 55 words, 1-minute read</p><p>To build and launch the site in a test server using <a href=https://www.browsersync.io/ >Browsersync</a>:</p><pre><code>npm start</code></pre><p>(Stop the server with <code>Ctrl+C</code>.)</p><p>To build the site for production and compress HTML files:</p><pre><code>npm run production</code></pre><p>The site is built in the <code>/build</code> folder.</p><p>Note you may want to change the <code>siteMeta.domain</code> and <code>siteMeta.rootpath</code> on lines 52 and 53 of <code>./build.js</code>.</p><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/installation/ class=back>« back: Installation</a></li><p></p><li><a href=/dashdev-suite/dashdev-website/master/build/start/site-files/ class=next>next: Site files »</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/installation/ >Installation</a></li><li><strong>Build</strong></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/site-files/ >Site files</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/page-definitions/ >Page definitions</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/plugins/ >Custom plugins</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,150 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Start - dashdev-website</title>
|
||||
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/" class="active">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../article/">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Start</h1>
|
||||
|
||||
|
||||
<p>This section provides an overview of core code and concepts.</p>
|
||||
|
||||
|
||||
|
||||
<ul class="pagelist">
|
||||
|
||||
<li>
|
||||
<a href="../start/installation/">
|
||||
|
||||
<h2>Installation</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>How to install this demonstration code.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/build/">
|
||||
|
||||
<h2>Build</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>How to build the static site using Metalsmith.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/site-files/">
|
||||
|
||||
<h2>Site files</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>A description of the source files used to build a website</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/page-definitions/">
|
||||
|
||||
<h2>Page definitions</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>How pages are defined in the source folder.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/plugins/">
|
||||
|
||||
<h2>Custom plugins</h2>
|
||||
<p class="articleinfo"></p>
|
||||
|
||||
<p>The custom plugins used to create this website.</p>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../start/installation/">Installation</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/build/">Build</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/site-files/">Site files</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/page-definitions/">Page definitions</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../start/plugins/">Custom plugins</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Start - dashdev-website</title><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ class=active>Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ >Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Start</h1><p>This section provides an overview of core code and concepts.</p><ul class=pagelist><li><a href=/dashdev-suite/dashdev-website/master/build/start/installation/ ><h2>Installation</h2><p class=articleinfo>2 March 2020</p><p>How to install this demonstration code.</p></a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/build/ ><h2>Build</h2><p class=articleinfo>26 February 2020</p><p>How to build the static site using Metalsmith.</p></a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/site-files/ ><h2>Site files</h2><p class=articleinfo>26 February 2020</p><p>A description of the source files used to build a website</p></a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/page-definitions/ ><h2>Page definitions</h2><p class=articleinfo>26 February 2020</p><p>How pages are defined in the source folder.</p></a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/plugins/ ><h2>Custom plugins</h2><p class=articleinfo>2 March 2020</p><p>The custom plugins used to create this website.</p></a></li></ul></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/installation/ >Installation</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/build/ >Build</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/site-files/ >Site files</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/page-definitions/ >Page definitions</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/plugins/ >Custom plugins</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,117 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Installation - dashdev-website</title>
|
||||
<meta name="description" content="How to install this demonstration code." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/" class="active">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Installation</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>Please ensure <a href="https://nodejs.org/">Node.js</a> and <a href="https://git-scm.com/">Git</a> are installed on your system.</p>
|
||||
<p>Download the demonstration code and switch to directory:</p>
|
||||
<p> git clone <a href="mailto:git@github.com">git@github.com</a>:dashdev-suite/dashdev-website.git
|
||||
cd metalsmith-demo</p>
|
||||
<p>Install dependencies:</p>
|
||||
<pre><code>npm install</code></pre>
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../start/" class="back">« back: Start</a></li></p>
|
||||
|
||||
<li><a href="../../start/build/" class="next">next: Build »</a></li></p>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<strong>Installation</strong>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/build/">Build</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/site-files/">Site files</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/page-definitions/">Page definitions</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/plugins/">Custom plugins</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Installation - dashdev-website</title><meta name=description content="How to install this demonstration code."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ class=active>Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ >Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Installation</h1><p class=articleinfo>Published 2 March 2020, 27 words, 1-minute read</p><p>Please ensure <a href=https://nodejs.org/ >Node.js</a> and <a href=https://git-scm.com/ >Git</a> are installed on your system.</p><p>Download the demonstration code and switch to directory:</p><p>git clone <a href=mailto:git@github.com>git@github.com</a>:dashdev-suite/dashdev-website.git cd metalsmith-demo</p><p>Install dependencies:</p><pre><code>npm install</code></pre><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/ class=back>« back: Start</a></li><p></p><li><a href=/dashdev-suite/dashdev-website/master/build/start/build/ class=next>next: Build »</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><strong>Installation</strong></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/build/ >Build</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/site-files/ >Site files</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/page-definitions/ >Page definitions</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/plugins/ >Custom plugins</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,131 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Page definitions - dashdev-website</title>
|
||||
<meta name="description" content="How pages are defined in the source folder." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/" class="active">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Page definitions</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>Each sub-folder in <code>src/html</code> is a website section. Pages named <code>index.md</code> are the default page in section. File paths are translated to permalinks, e.g.</p>
|
||||
<pre><code>src/html/article/mypage.md</code></pre><p>is rendered to:</p>
|
||||
<pre><code>build/article/mypage/index.html</code></pre><p>Pages use YAML front-matter defined at the top. This can be referenced in templates or during the build process, e.g.</p>
|
||||
<pre><code>---
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Page definitions - dashdev-website</title><meta name=description content="How pages are defined in the source folder."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ class=active>Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ >Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Page definitions</h1><p class=articleinfo>Published 26 February 2020, 194 words, 1-minute read</p><p>Each sub-folder in <code>src/html</code> is a website section. Pages named <code>index.md</code> are the default page in section. File paths are translated to permalinks, e.g.</p><pre><code>src/html/article/mypage.md</code></pre><p>is rendered to:</p><pre><code>build/article/mypage/index.html</code></pre><p>Pages use YAML front-matter defined at the top. This can be referenced in templates or during the build process, e.g.</p><pre><code>---
|
||||
title: My page title
|
||||
description: A description of this page for meta tags and page lists.
|
||||
layout: page.html
|
||||
priority: 0.9
|
||||
publish: 2016-06-01
|
||||
date: 2016-06-01
|
||||
---</code></pre><p>All items are optional. Note:</p>
|
||||
<ul>
|
||||
<li><code>layout</code> defaults to <code>page.html</code> unless <code>metadata.layout</code> is defined for the page collection (see the <code>use(collections({ ... })</code> code in <code>build.js</code>).</li>
|
||||
<li><code>priority</code> is a number between 0 (low) and 1 (high) which is used to order menus and define XML sitemaps.</li>
|
||||
<li><code>publish</code> can be set <code>draft</code>, <code>private</code> or a future date to ensure it is not published until required.</li>
|
||||
<li><code>date</code> is the date of the article. If not set, a future <code>publish</code> date or the file creation date is used.</li>
|
||||
</ul>
|
||||
<p>The page content is defined in markdown, HTML syntax or both below the front-matter section. The content can include <a href="http://handlebarsjs.com/">Handlebars</a> partials from the <code>src/partials</code> folder, e.g.</p>
|
||||
<pre><code>{{> partialname }}</code></pre><p>where <code>partialname</code> is the partial filename without its <code>.html</code> extension.</p>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../start/site-files/" class="back">« back: Site files</a></li></p>
|
||||
|
||||
<li><a href="../../start/plugins/" class="next">next: Custom plugins »</a></li></p>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../../start/installation/">Installation</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/build/">Build</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/site-files/">Site files</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Page definitions</strong>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/plugins/">Custom plugins</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
---</code></pre><p>All items are optional. Note:</p><ul><li><code>layout</code> defaults to <code>page.html</code> unless <code>metadata.layout</code> is defined for the page collection (see the <code>use(collections({ ... })</code> code in <code>build.js</code>).</li><li><code>priority</code> is a number between 0 (low) and 1 (high) which is used to order menus and define XML sitemaps.</li><li><code>publish</code> can be set <code>draft</code>, <code>private</code> or a future date to ensure it is not published until required.</li><li><code>date</code> is the date of the article. If not set, a future <code>publish</code> date or the file creation date is used.</li></ul><p>The page content is defined in markdown, HTML syntax or both below the front-matter section. The content can include <a href=http://handlebarsjs.com/ >Handlebars</a> partials from the <code>src/partials</code> folder, e.g.</p><pre><code>{{> partialname }}</code></pre><p>where <code>partialname</code> is the partial filename without its <code>.html</code> extension.</p><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/site-files/ class=back>« back: Site files</a></li><p></p><li><a href=/dashdev-suite/dashdev-website/master/build/start/plugins/ class=next>next: Custom plugins »</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/installation/ >Installation</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/build/ >Build</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/site-files/ >Site files</a></li><li><strong>Page definitions</strong></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/plugins/ >Custom plugins</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,118 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Custom plugins - dashdev-website</title>
|
||||
<meta name="description" content="The custom plugins used to create this website." />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/" class="active">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Custom plugins</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>The <code>build.js</code> file defines how the site is built using Metalsmith and various plugins.</p>
|
||||
<p>Several custom plugins have been created specifically for this site:</p>
|
||||
<ul>
|
||||
<li><code>lib/metalsmith-debug.js</code>: output debugging information to the console.</li>
|
||||
<li><code>lib/metalsmith-setdate.js</code>: ensure each page has a date. If a <code>date</code> is not defined in the page's front-matter, it is presumed to be the publish or file creation date.</li>
|
||||
<li><code>lib/metalsmith-moremeta.js</code>: applies further metadata to each page including the root folder, a default layout, primary and secondary navigation.</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../start/page-definitions/" class="back">« back: Page definitions</a></li></p>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../../start/installation/">Installation</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/build/">Build</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/site-files/">Site files</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/page-definitions/">Page definitions</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Custom plugins</strong>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Custom plugins - dashdev-website</title><meta name=description content="The custom plugins used to create this website."><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ class=active>Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ >Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Custom plugins</h1><p class=articleinfo>Published 2 March 2020, 77 words, 1-minute read</p><p>The <code>build.js</code> file defines how the site is built using Metalsmith and various plugins.</p><p>Several custom plugins have been created specifically for this site:</p><ul><li><code>lib/metalsmith-debug.js</code>: output debugging information to the console.</li><li><code>lib/metalsmith-setdate.js</code>: ensure each page has a date. If a <code>date</code> is not defined in the page's front-matter, it is presumed to be the publish or file creation date.</li><li><code>lib/metalsmith-moremeta.js</code>: applies further metadata to each page including the root folder, a default layout, primary and secondary navigation.</li></ul><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/page-definitions/ class=back>« back: Page definitions</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/installation/ >Installation</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/build/ >Build</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/site-files/ >Site files</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/page-definitions/ >Page definitions</a></li><li><strong>Custom plugins</strong></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -1,119 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Site files - dashdev-website</title>
|
||||
<meta name="description" content="A description of the source files used to build a website" />
|
||||
|
||||
<meta name="HandheldFriendly" content="true">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
||||
<link rel="stylesheet" media="all" href="../../css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
|
||||
<div class="content">
|
||||
|
||||
<p class="logo"><a href="../../">dashdev-website</a></p>
|
||||
<!-- main navigation -->
|
||||
<nav class="nav main">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="../../">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/" class="active">Start</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../article/">Articles</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../contact/">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="subpages">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<article>
|
||||
|
||||
<h1>Site files</h1>
|
||||
|
||||
|
||||
<p class="articleinfo">Published , words, -minute read</p>
|
||||
|
||||
|
||||
<p>All files in the <code>src</code> folder can be edited:</p>
|
||||
<ul>
|
||||
<li>pages are created as markdown files in the <code>src/html</code> folder and sub-folders.</li>
|
||||
<li>static assets such as CSS, JavaScript and image files are created in <code>src/assets</code>. These are copied without modification to <code>build/</code>.</li>
|
||||
<li>page templates are defined in <code>src/template</code>.</li>
|
||||
<li>reusable partials (chunks of HTML code) are declared in <code>src/partials</code>.</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<nav class="nav page">
|
||||
<ul>
|
||||
|
||||
<li><a href="../../start/build/" class="back">« back: Build</a></li></p>
|
||||
|
||||
<li><a href="../../start/page-definitions/" class="next">next: Page definitions »</a></li></p>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<!-- sub navigation -->
|
||||
<nav class="nav sub">
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="../../start/installation/">Installation</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/build/">Build</a>
|
||||
</li>
|
||||
<li>
|
||||
<strong>Site files</strong>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/page-definitions/">Page definitions</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="../../start/plugins/">Custom plugins</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<p>By <a href="https://chat.dashdevs.org">dashdevs</a> and featured on <a href="http://www.dashdevs.org/">DashDevs.org</a></p>
|
||||
|
||||
<p class="siteinfo">Development build, version 1.0.0, article template</p>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>Site files - dashdev-website</title><meta name=description content="A description of the source files used to build a website"><meta name=HandheldFriendly content=true><meta name=MobileOptimized content=320><meta name=viewport content="width=device-width,shrink-to-fit=no,user-scalable=no,initial-scale=1,minimum-scale=1,minimal-ui"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=mobile-web-app-capable content=yes><link rel=stylesheet media=all href=/dashdev-suite/dashdev-website/master/build/css/styles.css></head><body><header><div class=content><p class=logo><a href=/dashdev-suite/dashdev-website/master/build/ >dashdev-website</a></p><nav class="nav main"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/ >Home</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/ class=active>Start</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/article/ >Articles</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/contact/ >Contact</a></li></ul></nav></div></header><main class=subpages><div class=content><article><h1>Site files</h1><p class=articleinfo>Published 26 February 2020, 57 words, 1-minute read</p><p>All files in the <code>src</code> folder can be edited:</p><ul><li>pages are created as markdown files in the <code>src/html</code> folder and sub-folders.</li><li>static assets such as CSS, JavaScript and image files are created in <code>src/assets</code>. These are copied without modification to <code>build/</code>.</li><li>page templates are defined in <code>src/template</code>.</li><li>reusable partials (chunks of HTML code) are declared in <code>src/partials</code>.</li></ul><nav class="nav page"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/build/ class=back>« back: Build</a></li><p></p><li><a href=/dashdev-suite/dashdev-website/master/build/start/page-definitions/ class=next>next: Page definitions »</a></li><p></p></ul></nav></article><nav class="nav sub"><ul><li><a href=/dashdev-suite/dashdev-website/master/build/start/installation/ >Installation</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/build/ >Build</a></li><li><strong>Site files</strong></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/page-definitions/ >Page definitions</a></li><li><a href=/dashdev-suite/dashdev-website/master/build/start/plugins/ >Custom plugins</a></li></ul></nav></div></main><footer><p>By <a href=https://chat.dashdevs.org>dashdevs</a> and featured on <a href=http://www.dashdevs.org/ >DashDevs.org</a></p><p class=siteinfo>Production build, version 1.0.0, article template</p></footer></body></html>
|
|
@ -6,6 +6,7 @@
|
|||
"scripts": {
|
||||
"start": "node ./build.js",
|
||||
"production": "NODE_ENV=production node ./build.js",
|
||||
"production-win": "set NODE_ENV=production & node ./build.js",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue