24 lines
1.1 KiB
JavaScript
Executable File
24 lines
1.1 KiB
JavaScript
Executable File
var template = require('./quote.tpl');
|
|
|
|
var QUOTES = [
|
|
{ quote: '地理学家永远不会迷路,他们只是做意外的野外工作.', author: '' },
|
|
{ quote: '地理只是物理学放慢了脚步,里面夹着几棵树.', author: '' },
|
|
{ quote: '并非所有流浪者都迷路了.', author: '' },
|
|
{ quote: '制图艺术达到了如此完美的境界,以致单个省份的地图占据了整个城市的整个区域.', author: '' },
|
|
{ quote: '无论走到哪里,都有地理大数据.', author: null },
|
|
{ quote: "没有地理,无处可去!", author: '' },
|
|
{ quote: '一切都发生在某个地方.', author: '' },
|
|
{ quote: '地图线条和颜色代表着梦想的实现.', author: '' },
|
|
{ quote: '一切都与其他事物相关,<br />但近处的事物比远处的事物更相关.', author: "" },
|
|
{ quote: '地图的优点在于,它们显示了可以在有限空间内完成的工作,并预见了其中可能发生的一切.', author: '' }
|
|
];
|
|
|
|
/**
|
|
* Random quote
|
|
*/
|
|
module.exports = function () {
|
|
var idx = Math.round(Math.random() * (QUOTES.length - 1));
|
|
|
|
return template(QUOTES[idx]);
|
|
};
|