docs: improve slogan (#89)
@ -1,6 +1,6 @@
|
||||

|
||||

|
||||
|
||||
A web framework's framework for Node.js.
|
||||
Born to build better enterprise frameworks and apps
|
||||
|
||||
[![NPM version][npm-image]][npm-url]
|
||||
[![build status][travis-image]][travis-url]
|
||||
@ -29,7 +29,7 @@ A web framework's framework for Node.js.
|
||||
$ npm install egg --save
|
||||
```
|
||||
|
||||
Node >= 4.0.0 required, check [document for installation](https://eggjs.org/guide/installation.html).
|
||||
Node.js >= 4.0.0 required, check [document for installation](https://eggjs.org/guide/installation.html).
|
||||
|
||||
## Features
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||

|
||||

|
||||
|
||||
Node.js 编写的 web 框架的框架。
|
||||
为企业级框架和应用而生
|
||||
|
||||
[![NPM version][npm-image]][npm-url]
|
||||
[![build status][travis-image]][travis-url]
|
||||
@ -28,19 +28,43 @@ Node.js 编写的 web 框架的框架。
|
||||
$ npm install egg --save
|
||||
```
|
||||
|
||||
Egg 支持 node v4 以上的版本。
|
||||
Node.js >= 4.0.0 required, check [document for installation](https://eggjs.org/guide/installation.html).
|
||||
|
||||
## 特性
|
||||
|
||||
- ✔︎ Build-in process management
|
||||
- ✔︎ Plugin system
|
||||
- ✔︎ Framework customization
|
||||
- ✔︎ Lots of [plugins](https://eggjs.org/plugins/)
|
||||
|
||||
## 文档和社区
|
||||
|
||||
- [Website](https://eggjs.org)
|
||||
- [Plugin List](https://eggjs.org/plugins/)
|
||||
- [Badgeboard](https://eggjs.org/badgeboard/)
|
||||
- [Frameworks](https://eggjs.org/frameworks.html)
|
||||
|
||||
## 快速开始
|
||||
|
||||
Follow the step
|
||||
|
||||
```bash
|
||||
$ npm install egg-init -g
|
||||
$ egg-init --type simple showcase && cd showcase
|
||||
$ npm install
|
||||
$ npm run dev
|
||||
$ open http://localhost:7001
|
||||
```
|
||||
|
||||
## 示例
|
||||
|
||||
## 贡献代码
|
||||
|
||||
## 团队
|
||||
Please let us know what we can help, check [issues](https://github.com/eggjs/egg/issues) for bug reporting and suggestion.
|
||||
|
||||
If you are a contributor, follow [CONTRIBUTING](CONTRIBUTING.md).
|
||||
|
||||
If you are a member of egg, follow [MEMBER_GUIDE](MEMBER_GUIDE.md).
|
||||
|
||||
## 开源协议
|
||||
|
||||
|
||||
BIN
docs/assets/egg-logo.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 17 KiB |
5
docs/themes/egg/languages/en.yml
vendored
@ -5,14 +5,13 @@ menu:
|
||||
release: Release
|
||||
|
||||
index:
|
||||
title: "A web framework's framework for Node.js"
|
||||
slogan: "Build Enterprise Web Application Simply"
|
||||
slogan: "Born to build better enterprise frameworks and apps"
|
||||
feature11: "Process Management"
|
||||
feature12: "Built-in production process manager and load balancer"
|
||||
feature21: "Customization"
|
||||
feature22: "Customize framework for your team based on egg and plugins"
|
||||
feature31: "Powerful Plugin System"
|
||||
feature32: "A pluggable and extendable system that do everything you like in egg"
|
||||
feature32: "Do what you like in egg with the pluggable and extendable system"
|
||||
getstart: "Get Started"
|
||||
readmore: "Read More"
|
||||
|
||||
|
||||
7
docs/themes/egg/layout/index.swig
vendored
@ -1,7 +1,7 @@
|
||||
<div class="index">
|
||||
<div class="banner block index-bg-dark">
|
||||
<div class="banner-logo" id="logo"></div>
|
||||
<h1>{{ __('index.title') }}</h1>
|
||||
<h1>{{ __('index.slogan') }}</h1>
|
||||
<p class="banner-button">
|
||||
<a class="btn btn-primary" href="/guide/">{{ __('index.getstart') }}</a>
|
||||
</p>
|
||||
@ -9,11 +9,10 @@
|
||||
|
||||
<div class="version">
|
||||
<span>Latest: <strong>0.1.0</strong></span>
|
||||
<span>Nodejs >= <strong> 4.0.0</strong></span>
|
||||
<span>Node.js >= <strong> 4.0.0</strong></span>
|
||||
</div>
|
||||
|
||||
<div class="info block index-bg-light">
|
||||
<h2 class="ft-b">{{ __('index.slogan') }}</h2>
|
||||
<div class="info index-bg-light">
|
||||
<ul>
|
||||
<li>
|
||||
<div class="info-img">
|
||||
|
||||