Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fromatom/portfolio-template
https://github.com/fromatom/portfolio-template
Last synced: about 7 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/fromatom/portfolio-template
- Owner: FromAtom
- License: mit
- Created: 2018-02-14T06:19:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-17T05:28:59.000Z (over 1 year ago)
- Last Synced: 2024-05-01T21:44:13.853Z (6 months ago)
- Language: SCSS
- Size: 22.5 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# portfolio-template
ポートフォリオサイト## 開発方法
### セットアップ
```bash
$ git clone [email protected]:FromAtom/portfolio-template.git
$ cd portfolio-template
$ bundle install --path vendor/bundle
```### 開発サイクル
これを叩くとサーバが立ち上がる。```bash
$ bundle exec middleman server
$ open 'http://localhost:4567'
```サイト内のファイルを編集するたびにブラウザが自動リロードされるので便利です。
### 新しいページの増やし方
`source/works` ディレクトリの中に `hoge.html.slim` という名前でファイルを作れば、新しいページになる。このページへのリンクは```ruby
= link_to "リンク名", "/works/hoge"
```と書けば良い。
## BASIC認証
下記2つの環境変数を設定することで、BASIC認証を有効化できます。```ruby
ENV["PORTRAIT_USER"] #ユーザ名
ENV["PORTRAIT_PASSWORD"] #パスワード
```## License
[MIT](LICENSE)