hospitalrun.io
v2.1
HospitalRun.io는 Jekyll로 간단하고 블로그 인식, 정적 사이트 생성기를 사용합니다. 다양한 형식의 원시 텍스트 파일을 포함하는 템플릿 디렉토리가 필요하고 (Markdown과 같은) 변환기 및 액체 렌더러를 통해 실행되며 NetLify에서 제공하기에 적합한 완전하고 출판 할 수있는 정적 웹 사이트를 뱉어냅니다.
이미 모든 헤더와 RubyGems가 설치된 완전한 Ruby 개발 환경이있는 경우 다음과 같은 간단한 단계를 수행 할 수 있습니다.
bundle install 실행하여 종속성을 설치하십시오bundle exec jekyll build 실행하여 로컬에 구축하십시오bundle exec jekyll serve jekyll 서버를 시작하도록합니다. .
├── Gemfile
├── _config.yml
├── _data
│ ├── faq_page.yml
│ ├── future_roadmap.yml
│ ├── navigation.yml
│ ├── slider.yml
│ ├── sponsor.yml
│ ├── team_emeritus.yml
│ ├── team_members.yml
│ ├── testimonials.yml
│ └── trending_items.yml
├── _includes
│ ├── blog_and_items.html
│ ├── call_to_action.html
│ ├── cookie-consent.html
│ ├── enterprise.html
│ ├── features.html
│ ├── footer.html
│ ├── ga.js
│ ├── gtm.html
│ ├── gtm.js
│ ├── header.html
│ ├── help_area.html
│ ├── map.html
│ ├── page_header.html
│ ├── pagination.html
│ ├── post_loop.html
│ ├── sidebar.html
│ ├── slider.html
│ ├── social_share.html
│ ├── sponsor_area.html
│ ├── team_area.html
│ ├── team_area_emeritus.html
│ ├── testimonials.html
│ ├── text_area.html
│ ├── timeline_area.html
│ ├── tryit.html
│ └── why_area.html
├── _layouts
│ ├── blank.html
│ ├── default.html
│ ├── page.html
│ ├── post.html
│ └── tag_page.html
├── _posts
│ ├── 2014-08-25-coming-soon-hospitalrun-10.md
│ ├── 2014-08-25-hospitalrun-early-release-in-september-2014.md
│ ├── 2016-06-06-why-hospitalrun.md
│ ├── 2017-05-23-announcing-hospitalrun-1.0.0-beta.markdown
│ ├── 2018-02-26-roadmap-to-hospitalrun-1.0.markdown
│ ├── 2018-07-01-help-wanted-a-message-from-the-co-founders.markdown
│ └── 2019-08-07-a-new-beginning.md
├── assets
│ ├── css
│ ├── fonts
│ ├── images
│ ├── img #legacy folder
│ ├── js
│ └── scss #use this file to edit css
├── gulpfile.js
├── index.html
├── package.json
├── pages
│ ├── blog.html
│ ├── contacts.html
│ ├── contribute.html
│ ├── demo.html
│ ├── download.html
│ ├── faq.html
│ ├── features.html
│ ├── map.html
│ ├── privacy-policy.html
│ ├── roadmap.html
│ ├── standards.html
│ ├── team.html
│ └── tryit.html
├── robots.txt
└── search.json