Skip to content

Commit

Permalink
docs: improve slogan (eggjs#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 authored Sep 2, 2016
1 parent 0c53a5d commit d36df0b
Show file tree
Hide file tree
Showing 18 changed files with 36 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![](https://cloud.githubusercontent.com/assets/985607/16881873/c1612cf8-4aee-11e6-9b51-e95412750930.png)
![](https://raw.githubusercontent.com/eggjs/egg/master/docs/assets/egg-logo.png)

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]
Expand Down Expand Up @@ -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

Expand Down
32 changes: 28 additions & 4 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![](https://cloud.githubusercontent.com/assets/985607/16881873/c1612cf8-4aee-11e6-9b51-e95412750930.png)
![](https://raw.githubusercontent.com/eggjs/egg/master/docs/assets/egg-logo.png)

Node.js 编写的 web 框架的框架。
为企业级框架和应用而生

[![NPM version][npm-image]][npm-url]
[![build status][travis-image]][travis-url]
Expand Down Expand Up @@ -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).

## 开源协议

Expand Down
Binary file added docs/assets/egg-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/logo/EGG-LOGO.psd
Binary file not shown.
Binary file removed docs/logo/egg1.png
Binary file not shown.
Binary file removed docs/logo/egg10.png
Binary file not shown.
Binary file removed docs/logo/egg11.png
Binary file not shown.
Binary file removed docs/logo/egg2.png
Binary file not shown.
Binary file removed docs/logo/egg3.png
Binary file not shown.
Binary file removed docs/logo/egg4.png
Binary file not shown.
Binary file removed docs/logo/egg5.png
Binary file not shown.
Binary file removed docs/logo/egg6.png
Binary file not shown.
Binary file removed docs/logo/egg7.png
Binary file not shown.
Binary file removed docs/logo/egg8.png
Binary file not shown.
Binary file removed docs/logo/egg9.png
Binary file not shown.
Binary file removed docs/logo/thumb.png
Binary file not shown.
5 changes: 2 additions & 3 deletions docs/themes/egg/languages/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
7 changes: 3 additions & 4 deletions docs/themes/egg/layout/index.swig
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
<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>
</div>

<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">
Expand Down

0 comments on commit d36df0b

Please sign in to comment.