simple gallery_responsive template
1.0.0
レスポンシブギャラリーMaxim Orlovによって設計およびコーディングされた1ページのテンプレートテンプレート。
デモ:http://website-templates.github.io/simple-gallery_responsive-template
http://magicmockups.com/で作成された製品モックアップ
./
├── .editorconfig
├── README.md
├── automation.sh
|
├── gulp_tasks/ * gulp tasks
| ├── config/ * gulp tasks config
│ | ├── paths.js
│ | ├── settings.js
│ | └── aliases.js
│ |
| └── task.js
│
├── gulpfile.js
├── package.json
|
├── screenshots/ * responsive test screenshots
|
├── dev/ * site source
│ ├── images/ * image sources
| │
│ ├── pug/ * templates
| | ├── blocks/ * blocks library
| │ | └── block.pug
| │ ├── helpers/ * helper mixins
| │ ├── vendor/ * third-party code
| │ ├── layouts/ * page layouts
| │ └── pages/ * main pages templates
| │
│ ├── js/ * compiled and source js
| | ├── vendor/ * vendor scripts library
| | ├── lib/ * site scripts library
| │ ├── head.js * head scripts
| │ └── body.js * vendor scripts
| │
| ├── stylus/ * stylus preprocessor styles
| | ├── blocks/ * blocks library
| │ | └── block.styl
| │ ├── helpers/ * mixins and vars
| │ ├── vendor/ * third-party code
| │ ├── custom.styl
| │ ├── noscript.styl
| │ └── screen.styl
| │
│ ├── helpers/ * helper files
| | ├── favicon.ico
| | └── .htaccess
| │
│ ├── fonts/ * font sources
| │
│ └── data/ * configs and data for templates
│
└── build/ * built source
├── index.html
├── page.html
|
└── static/ * static assets
├── css/ * minified styles
|
├── images/ * minified images
│
├── js/ * minified assembled js
|
└── fonts/ * @font-face-ready webfonts
このプロジェクトには、editorConfigプラグインを使用してコードエディターが使用するルートに.EditorConfigファイルがあります。インデントスタイルのようなコードスタイル、トレーリングホワイトスペースなどを説明しています。詳細についてはこちらをご覧ください
このボイラープレートは、外部データ構成を備えたPUGテンプレートを使用します。メイン設定はdev/data/config.jsonファイルにあります。また、 config.key-nameを使用してテンプレートで使用できます
ここには、いくつかの説明が付いたガルプタスクのグループがあります
Bower依存関係をインストールし、それらを開発したフォルダーに配置します。 Gulp: gulp start
静的サーバーを使用した開発タスク。 Gulp: gulp dev
タスクを構築します。 Gulp: gulp build
すべてのタスクを実行して、再生および構築プロジェクトを構築します。 Gulp: gulp rebuild
変更を監視せずにサーバーを実行します。 Gulp: gulp server
このプロジェクトでは、BROWSERSYNCを使用してStatic Serverを使用して、ライブリロードオプションを構成し、構成します。
mit