Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.
-
-
-
Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.
-
-
-
Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork.
-
-
-
Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater.
diff --git a/_docs/examples/cheatsheet.md b/_docs/examples/cheatsheet.md
deleted file mode 100644
index 39c383c93..000000000
--- a/_docs/examples/cheatsheet.md
+++ /dev/null
@@ -1,403 +0,0 @@
----
-title: Markdown Cheatsheet
-permalink: /docs/cheatsheet/
----
-
-From [adam-p/markdown-here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
-
-##### Table of Contents
-[Headers](#headers)
-[Emphasis](#emphasis)
-[Lists](#lists)
-[Links](#links)
-[Images](#images)
-[Code and Syntax Highlighting](#code)
-[Tables](#tables)
-[Blockquotes](#blockquotes)
-[Inline HTML](#html)
-[Horizontal Rule](#hr)
-[Line Breaks](#lines)
-[Youtube videos](#videos)
-
-
-## Headers
-
-```no-highlight
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-Alternatively, for H1 and H2, an underline-ish style:
-
-Alt-H1
-======
-
-Alt-H2
-------
-```
-
-# H1
-## H2
-### H3
-#### H4
-##### H5
-###### H6
-
-Alternatively, for H1 and H2, an underline-ish style:
-
-Alt-H1
-======
-
-Alt-H2
-------
-
-
-## Emphasis
-
-```no-highlight
-Emphasis, aka italics, with *asterisks* or _underscores_.
-
-Strong emphasis, aka bold, with **asterisks** or __underscores__.
-
-Combined emphasis with **asterisks and _underscores_**.
-
-Strikethrough uses two tildes. ~~Scratch this.~~
-```
-
-Emphasis, aka italics, with *asterisks* or _underscores_.
-
-Strong emphasis, aka bold, with **asterisks** or __underscores__.
-
-Combined emphasis with **asterisks and _underscores_**.
-
-Strikethrough uses two tildes. ~~Scratch this.~~
-
-
-
-## Lists
-
-(In this example, leading and trailing spaces are shown with with dots: ⋅)
-
-```no-highlight
-1. First ordered list item
-2. Another item
-⋅⋅* Unordered sub-list.
-1. Actual numbers don't matter, just that it's a number
-⋅⋅1. Ordered sub-list
-4. And another item.
-
-⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
-
-⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
-⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅
-⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
-
-* Unordered list can use asterisks
-- Or minuses
-+ Or pluses
-```
-
-1. First ordered list item
-2. Another item
- * Unordered sub-list.
-1. Actual numbers don't matter, just that it's a number
- 1. Ordered sub-list
-4. And another item.
-
- You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
-
- To have a line break without a paragraph, you will need to use two trailing spaces.
- Note that this line is separate, but within the same paragraph.
- (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
-
-* Unordered list can use asterisks
-- Or minuses
-+ Or pluses
-
-
-## Links
-
-There are two ways to create links.
-
-```no-highlight
-[I'm an inline-style link](https://www.google.com)
-
-[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
-
-[I'm a reference-style link][Arbitrary case-insensitive reference text]
-
-[I'm a relative reference to a repository file](../blob/master/LICENSE)
-
-[You can use numbers for reference-style link definitions][1]
-
-Or leave it empty and use the [link text itself].
-
-URLs and URLs in angle brackets will automatically get turned into links.
-http://www.example.com or and sometimes
-example.com (but not on Github, for example).
-
-Some text to show that the reference links can follow later.
-
-[arbitrary case-insensitive reference text]: https://www.mozilla.org
-[1]: http://slashdot.org
-[link text itself]: http://www.reddit.com
-```
-
-[I'm an inline-style link](https://www.google.com)
-
-[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
-
-[I'm a reference-style link][Arbitrary case-insensitive reference text]
-
-[I'm a relative reference to a repository file](../blob/master/LICENSE)
-
-[You can use numbers for reference-style link definitions][1]
-
-Or leave it empty and use the [link text itself].
-
-URLs and URLs in angle brackets will automatically get turned into links.
-http://www.example.com or and sometimes
-example.com (but not on Github, for example).
-
-Some text to show that the reference links can follow later.
-
-[arbitrary case-insensitive reference text]: https://www.mozilla.org
-[1]: http://slashdot.org
-[link text itself]: http://www.reddit.com
-
-
-## Images
-
-```no-highlight
-Here's our logo (hover to see the title text):
-
-Inline-style:
-
-
-Reference-style:
-![alt text][logo]
-
-[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
-```
-
-Here's our logo (hover to see the title text):
-
-Inline-style:
-
-
-Reference-style:
-![alt text][logo]
-
-[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
-
-
-## Code and Syntax Highlighting
-
-Code blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers -- like Github's and *Markdown Here* -- support syntax highlighting. Which languages are supported and how those language names should be written will vary from renderer to renderer. *Markdown Here* supports highlighting for dozens of languages (and not-really-languages, like diffs and HTTP headers); to see the complete list, and how to write the language names, see the [highlight.js demo page](http://softwaremaniacs.org/media/soft/highlight/test.html).
-
-```no-highlight
-Inline `code` has `back-ticks around` it.
-```
-
-Inline `code` has `back-ticks around` it.
-
-Blocks of code are either fenced by lines with three back-ticks ```, or are indented with four spaces. I recommend only using the fenced code blocks -- they're easier and only they support syntax highlighting.
-
-
```javascript
-var s = "JavaScript syntax highlighting";
-alert(s);
-```
-
-```python
-s = "Python syntax highlighting"
-print s
-```
-
-```
-No language indicated, so no syntax highlighting.
-But let's throw in a <b>tag</b>.
-```
-
-
-
-
-```javascript
-var s = "JavaScript syntax highlighting";
-alert(s);
-```
-
-```python
-s = "Python syntax highlighting"
-print s
-```
-
-```
-No language indicated, so no syntax highlighting in Markdown Here (varies on Github).
-But let's throw in a tag.
-```
-
-
-
-## Tables
-
-Tables aren't part of the core Markdown spec, but they are part of GFM and *Markdown Here* supports them. They are an easy way of adding tables to your email -- a task that would otherwise require copy-pasting from another application.
-
-```no-highlight
-Colons can be used to align columns.
-
-| Tables | Are | Cool |
-| ------------- |:-------------:| -----:|
-| col 3 is | right-aligned | $1600 |
-| col 2 is | centered | $12 |
-| zebra stripes | are neat | $1 |
-
-There must be at least 3 dashes separating each header cell.
-The outer pipes (|) are optional, and you don't need to make the
-raw Markdown line up prettily. You can also use inline Markdown.
-
-Markdown | Less | Pretty
---- | --- | ---
-*Still* | `renders` | **nicely**
-1 | 2 | 3
-```
-
-Colons can be used to align columns.
-
-| Tables | Are | Cool |
-| ------------- |:-------------:| -----:|
-| col 3 is | right-aligned | $1600 |
-| col 2 is | centered | $12 |
-| zebra stripes | are neat | $1 |
-
-There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.
-
-Markdown | Less | Pretty
---- | --- | ---
-*Still* | `renders` | **nicely**
-1 | 2 | 3
-
-
-## Blockquotes
-
-```no-highlight
-> Blockquotes are very handy in email to emulate reply text.
-> This line is part of the same quote.
-
-Quote break.
-
-> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
-```
-
-> Blockquotes are very handy in email to emulate reply text.
-> This line is part of the same quote.
-
-Quote break.
-
-> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
-
-
-## Inline HTML
-
-You can also use raw HTML in your Markdown, and it'll mostly work pretty well.
-
-```no-highlight
-
-
Definition list
-
Is something people use sometimes.
-
-
Markdown in HTML
-
Does *not* work **very** well. Use HTML tags.
-
-```
-
-
-
Definition list
-
Is something people use sometimes.
-
-
Markdown in HTML
-
Does *not* work **very** well. Use HTML tags.
-
-
-
-## Horizontal Rule
-
-```
-Three or more...
-
----
-
-Hyphens
-
-***
-
-Asterisks
-
-___
-
-Underscores
-```
-
-Three or more...
-
----
-
-Hyphens
-
-***
-
-Asterisks
-
-___
-
-Underscores
-
-
-## Line Breaks
-
-My basic recommendation for learning how line breaks work is to experiment and discover -- hit <Enter> once (i.e., insert one newline), then hit it twice (i.e., insert two newlines), see what happens. You'll soon learn to get what you want. "Markdown Toggle" is your friend.
-
-Here are some things to try out:
-
-```
-Here's a line for us to start with.
-
-This line is separated from the one above by two newlines, so it will be a *separate paragraph*.
-
-This line is also a separate paragraph, but...
-This line is only separated by a single newline, so it's a separate line in the *same paragraph*.
-```
-
-Here's a line for us to start with.
-
-This line is separated from the one above by two newlines, so it will be a *separate paragraph*.
-
-This line is also begins a separate paragraph, but...
-This line is only separated by a single newline, so it's a separate line in the *same paragraph*.
-
-(Technical note: *Markdown Here* uses GFM line breaks, so there's no need to use MD's two-space line breaks.)
-
-
-## Youtube videos
-
-They can't be added directly but you can add an image with a link to the video like this:
-
-```no-highlight
-
-```
-
-Or, in pure Markdown, but losing the image sizing and border:
-
-```no-highlight
-[](http://www.youtube.com/watch?v=YOUTUBE_VIDEO_ID_HERE)
-```
-
-Referencing a bug by #bugID in your git commit links it to the slip. For example #1.
-
----
-
-License: [CC-BY](https://creativecommons.org/licenses/by/3.0/)
diff --git a/_docs/examples/font-awesome.md b/_docs/examples/font-awesome.md
deleted file mode 100644
index 75360f360..000000000
--- a/_docs/examples/font-awesome.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-title: Font Awesome Icon List
-permalink: /docs/font-awesome/
-description: Demo of all Font Awesome icons
----
-
-
-
-
500px
address-book
address-book-o
address-card
address-card-o
adjust
adn
align-center
align-justify
align-left
align-right
amazon
ambulance
american-sign-language-interpreting
anchor
android
angellist
angle-double-down
angle-double-left
angle-double-right
angle-double-up
angle-down
angle-left
angle-right
angle-up
apple
archive
area-chart
arrow-circle-down
arrow-circle-left
arrow-circle-o-down
arrow-circle-o-left
arrow-circle-o-right
arrow-circle-o-up
arrow-circle-right
arrow-circle-up
arrow-down
arrow-left
arrow-right
arrow-up
arrows
arrows-alt
arrows-h
arrows-v
assistive-listening-systems
asterisk
at
audio-description
backward
balance-scale
ban
bandcamp
bar-chart
barcode
bars
bath
battery-empty
battery-full
battery-half
battery-quarter
battery-three-quarters
bed
beer
behance
behance-square
bell
bell-o
bell-slash
bell-slash-o
bicycle
binoculars
birthday-cake
bitbucket
bitbucket-square
black-tie
blind
bluetooth
bluetooth-b
bold
bolt
bomb
book
bookmark
bookmark-o
braille
briefcase
btc
bug
building
building-o
bullhorn
bullseye
bus
buysellads
calculator
calendar
calendar-check-o
calendar-minus-o
calendar-o
calendar-plus-o
calendar-times-o
camera
camera-retro
car
caret-down
caret-left
caret-right
caret-square-o-down
caret-square-o-left
caret-square-o-right
caret-square-o-up
caret-up
cart-arrow-down
cart-plus
cc
cc-amex
cc-diners-club
cc-discover
cc-jcb
cc-mastercard
cc-paypal
cc-stripe
cc-visa
certificate
chain-broken
check
check-circle
check-circle-o
check-square
check-square-o
chevron-circle-down
chevron-circle-left
chevron-circle-right
chevron-circle-up
chevron-down
chevron-left
chevron-right
chevron-up
child
chrome
circle
circle-o
circle-o-notch
circle-thin
clipboard
clock-o
clone
cloud
cloud-download
cloud-upload
code
code-fork
codepen
codiepie
coffee
cog
cogs
columns
comment
comment-o
commenting
commenting-o
comments
comments-o
compass
compress
connectdevelop
contao
copyright
creative-commons
credit-card
credit-card-alt
crop
crosshairs
css3
cube
cubes
cutlery
dashcube
database
deaf
delicious
desktop
deviantart
diamond
digg
dot-circle-o
download
dribbble
dropbox
drupal
edge
eercast
eject
ellipsis-h
ellipsis-v
empire
envelope
envelope-o
envelope-open
envelope-open-o
envelope-square
envira
eraser
etsy
eur
exchange
exclamation
exclamation-circle
exclamation-triangle
expand
expeditedssl
external-link
external-link-square
eye
eye-slash
eyedropper
facebook
facebook-official
facebook-square
fast-backward
fast-forward
fax
female
fighter-jet
file
file-archive-o
file-audio-o
file-code-o
file-excel-o
file-image-o
file-o
file-pdf-o
file-powerpoint-o
file-text
file-text-o
file-video-o
file-word-o
files-o
film
filter
fire
fire-extinguisher
firefox
first-order
flag
flag-checkered
flag-o
flask
flickr
floppy-o
folder
folder-o
folder-open
folder-open-o
font
font-awesome
fonticons
fort-awesome
forumbee
forward
foursquare
free-code-camp
frown-o
futbol-o
gamepad
gavel
gbp
genderless
get-pocket
gg
gg-circle
gift
git
git-square
github
github-alt
github-square
gitlab
glass
glide
glide-g
globe
google
google-plus
google-plus-official
google-plus-square
google-wallet
graduation-cap
gratipay
grav
h-square
hacker-news
hand-lizard-o
hand-o-down
hand-o-left
hand-o-right
hand-o-up
hand-paper-o
hand-peace-o
hand-pointer-o
hand-rock-o
hand-scissors-o
hand-spock-o
handshake-o
hashtag
hdd-o
header
headphones
heart
heart-o
heartbeat
history
home
hospital-o
hourglass
hourglass-end
hourglass-half
hourglass-o
hourglass-start
houzz
html5
i-cursor
id-badge
id-card
id-card-o
ils
imdb
inbox
indent
industry
info
info-circle
inr
instagram
internet-explorer
ioxhost
italic
joomla
jpy
jsfiddle
key
keyboard-o
krw
language
laptop
lastfm
lastfm-square
leaf
leanpub
lemon-o
level-down
level-up
life-ring
lightbulb-o
line-chart
link
linkedin
linkedin-square
linode
linux
list
list-alt
list-ol
list-ul
location-arrow
lock
long-arrow-down
long-arrow-left
long-arrow-right
long-arrow-up
low-vision
magic
magnet
male
map
map-marker
map-o
map-pin
map-signs
mars
mars-double
mars-stroke
mars-stroke-h
mars-stroke-v
maxcdn
meanpath
medium
medkit
meetup
meh-o
mercury
microchip
microphone
microphone-slash
minus
minus-circle
minus-square
minus-square-o
mixcloud
mobile
modx
money
moon-o
motorcycle
mouse-pointer
music
neuter
newspaper-o
object-group
object-ungroup
odnoklassniki
odnoklassniki-square
opencart
openid
opera
optin-monster
outdent
pagelines
paint-brush
paper-plane
paper-plane-o
paperclip
paragraph
pause
pause-circle
pause-circle-o
paw
paypal
pencil
pencil-square
pencil-square-o
percent
phone
phone-square
picture-o
pie-chart
pied-piper
pied-piper-alt
pied-piper-pp
pinterest
pinterest-p
pinterest-square
plane
play
play-circle
play-circle-o
plug
plus
plus-circle
plus-square
plus-square-o
podcast
power-off
print
product-hunt
puzzle-piece
qq
qrcode
question
question-circle
question-circle-o
quora
quote-left
quote-right
random
ravelry
rebel
recycle
reddit
reddit-alien
reddit-square
refresh
registered
renren
repeat
reply
reply-all
retweet
road
rocket
rss
rss-square
rub
safari
scissors
scribd
search
search-minus
search-plus
sellsy
server
share
share-alt
share-alt-square
share-square
share-square-o
shield
ship
shirtsinbulk
shopping-bag
shopping-basket
shopping-cart
shower
sign-in
sign-language
sign-out
signal
simplybuilt
sitemap
skyatlas
skype
slack
sliders
slideshare
smile-o
snapchat
snapchat-ghost
snapchat-square
snowflake-o
sort
sort-alpha-asc
sort-alpha-desc
sort-amount-asc
sort-amount-desc
sort-asc
sort-desc
sort-numeric-asc
sort-numeric-desc
soundcloud
space-shuttle
spinner
spoon
spotify
square
square-o
stack-exchange
stack-overflow
star
star-half
star-half-o
star-o
steam
steam-square
step-backward
step-forward
stethoscope
sticky-note
sticky-note-o
stop
stop-circle
stop-circle-o
street-view
strikethrough
stumbleupon
stumbleupon-circle
subscript
subway
suitcase
sun-o
superpowers
superscript
table
tablet
tachometer
tag
tags
tasks
taxi
telegram
television
tencent-weibo
terminal
text-height
text-width
th
th-large
th-list
themeisle
thermometer-empty
thermometer-full
thermometer-half
thermometer-quarter
thermometer-three-quarters
thumb-tack
thumbs-down
thumbs-o-down
thumbs-o-up
thumbs-up
ticket
times
times-circle
times-circle-o
tint
toggle-off
toggle-on
trademark
train
transgender
transgender-alt
trash
trash-o
tree
trello
tripadvisor
trophy
truck
try
tty
tumblr
tumblr-square
twitch
twitter
twitter-square
umbrella
underline
undo
universal-access
university
unlock
unlock-alt
upload
usb
usd
user
user-circle
user-circle-o
user-md
user-o
user-plus
user-secret
user-times
users
venus
venus-double
venus-mars
viacoin
viadeo
viadeo-square
video-camera
vimeo
vimeo-square
vine
vk
volume-control-phone
volume-down
volume-off
volume-up
weibo
weixin
whatsapp
wheelchair
wheelchair-alt
wifi
wikipedia-w
window-close
window-close-o
window-maximize
window-minimize
window-restore
windows
wordpress
wpbeginner
wpexplorer
wpforms
wrench
xing
xing-square
y-combinator
yahoo
yelp
yoast
youtube
youtube-play
youtube-square
diff --git a/_docs/index.md b/_docs/index.md
index a52a4c29a..bb1fde7dd 100644
--- a/_docs/index.md
+++ b/_docs/index.md
@@ -4,47 +4,18 @@ permalink: /docs/home/
redirect_from: /docs/index.html
---
-## Getting started
+## 欢迎加入CodingApi
-[GitHub Pages](https://pages.github.com) can automatically generate and serve the website for you.
-Let's say you have a username/organisation `my-org` and project `my-proj`; if you locate Jekyll source under `docs` folder of master branch in your repo `github.com/my-org/my-proj`, the website will be served on `my-org.github.io/my-proj`.
-The good thing about coupling your documentation with the source repo is, whenever you merge features with regarding content to master branch, it will also be published on the webpage instantly.
+ 我曾经得意与我是一名优秀的程序员,我可以用更短的时间做出更好的东西。我曾经得意与我是一名架构师,我可以将负责的系统架构用清晰的架构来规划出实现思路。我现在是公司CTO,我发现一个好的产品靠一个好的程序员或是好的架构师也根本打造不出来。
-1. Just [download the source](https://github.com/aksakalli/jekyll-doc-theme/archive/gh-pages.zip) into your repo under `docs` folder.
-2. Edit site settings in `_config.yml` file according to your project. !!! `baseurl` should be your website's relative URI like `/my-proj` !!!
-3. Replace `favicon.ico` and `img/logonav.png` with your own logo.
+ 我想任何人在小时候,小老师和家长都在说应该好好学习,大家肯定都认可好好学习是对的。突然有人说他晚上写作业写到很晚时,然后你也会附和一下,还特意将头转向对方然后对他说:恩,我有时候也这样。
-## Writing content
+ 我给很多人讲敏捷思维后,很多人也都说,嗯嗯 就是这样,我们也这样做需求或什么..。我想问那为什么项目还是做黄了,读敏捷管理,你就知道其实它只是一个宣言,并没有告诉大家具体落地的方式。
-### Docs
+ 大道理大家都懂,但是如何以一种的好的方式去激励着自己前行下去才是最有价值的东西。
-Docs are [collections](https://jekyllrb.com/docs/collections/) of pages stored under `_docs` folder. To create a new page:
+ 我认为敏捷思维,至少需要从三种角度去落地:项目管理、技术能力、团队激励。只有建立一套优良的制度体系才能让敏捷落地。加入CodingApi,大家一同去探索与学习如何从0开始搭建敏捷之路。
-**1.** Create a new Markdown as `_docs/my-page.md` and write [front matter](https://jekyllrb.com/docs/frontmatter/) & content such as:
-```
----
-title: My Page
-permalink: /docs/my-page/
----
-
-Hello World!
-```
-
-**2.** Add the pagename to `_data/docs.yml` file in order to list in docs navigation panel:
-
-```
-- title: My Group Title
- docs:
- - my-page
-```
-
-### Blog posts
-
-Add a new Markdown file such as `2017-05-09-my-post.md` and write the content similar to other post examples.
-
-### Pages
-
-The homepage is located under `index.html` file. You can change the content or design completely different welcome page for your taste. (You can use [bootstrap components](http://getbootstrap.com/components/))
+
-In order to add a new page, create a new `.html` or `.md` (markdown) file under root directory and link it in `_includes/topnav.html`.
diff --git a/_docs/themes.md b/_docs/themes.md
deleted file mode 100644
index 9e1c70c22..000000000
--- a/_docs/themes.md
+++ /dev/null
@@ -1,248 +0,0 @@
----
-title: Themes
-permalink: /docs/themes/
----
-
-By default, this website uses `paper` theme, but you can change it to another [bootwatch theme](https://bootswatch.com/3/) by setting
-`bootwatch` variable in `_config.yml` file.
-(Don't forget to restart `Jekyll` if you are running locally because the configuration is not re-read upon change.)
-
-
diff --git a/_posts/2017-02-01-welcome-to-jekyll.md b/_posts/2017-02-01-welcome-to-jekyll.md
deleted file mode 100644
index f2a1f90a6..000000000
--- a/_posts/2017-02-01-welcome-to-jekyll.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-layout: post
-title: "Welcome to Jekyll!"
-date: 2017-02-01 09:41:09
-author: Jekyll
----
-You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
-
-To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
-
-Jekyll also offers powerful support for code snippets:
-
-{% highlight ruby %}
-def print_hi(name)
- puts "Hi, #{name}"
-end
-print_hi('Tom')
-#=> prints 'Hi, Tom' to STDOUT.
-{% endhighlight %}
-
-Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll’s dedicated Help repository][jekyll-help].
-
-[jekyll]: http://jekyllrb.com
-[jekyll-gh]: https://github.com/jekyll/jekyll
-[jekyll-help]: https://github.com/jekyll/jekyll-help
diff --git a/_posts/2017-05-03-jekyll-doc-theme.md b/_posts/2017-05-03-jekyll-doc-theme.md
deleted file mode 100644
index 7972842cf..000000000
--- a/_posts/2017-05-03-jekyll-doc-theme.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-layout: post
-title: "Jekyll Doc Theme is published!"
-author: aksakalli
----
-A new custom Jekyll theme for documentation and blogging is out. It is ideal for Open Source Software projects to publish under [GitHub Pages](https://pages.github.com).
-
-Your contribution is welcome!
diff --git a/_posts/2019-08-04-welcome-to-codingapi.md b/_posts/2019-08-04-welcome-to-codingapi.md
new file mode 100644
index 000000000..be0617568
--- /dev/null
+++ b/_posts/2019-08-04-welcome-to-codingapi.md
@@ -0,0 +1,20 @@
+---
+layout: post
+title: "Welcome to CodingApi!"
+date: 2019-08-04 14:41:29
+author: Lorne
+---
+## 欢迎加入CodingApi
+
+ 我曾经得意与我是一名优秀的程序员,我可以用更短的时间做出更好的东西。我曾经得意与我是一名架构师,我可以将负责的系统架构用清晰的架构来规划出实现思路。我现在是公司CTO,我发现一个好的产品靠一个好的程序员或是好的架构师也根本打造不出来。
+
+ 我想任何人在小时候,小老师和家长都在说应该好好学习,大家肯定都认可好好学习是对的。突然有人说他晚上写作业写到很晚时,然后你也会附和一下,还特意将头转向对方然后对他说:恩,我有时候也这样。
+
+ 我给很多人讲敏捷思维后,很多人也都说,嗯嗯 就是这样,我们也这样做需求或什么..。我想问那为什么项目还是做黄了,读敏捷管理,你就知道其实它只是一个宣言,并没有告诉大家具体落地的方式。
+
+ 大道理大家都懂,但是如何以一种的好的方式去激励着自己前行下去才是最有价值的东西。
+
+ 我认为敏捷思维,至少需要从三种角度去落地:项目管理、技术能力、团队激励。只有建立一套优良的制度体系才能让敏捷落地。加入CodingApi,大家一同去探索与学习如何从0开始搭建敏捷之路。
+
+
+
{{ page.title }}on {{ page.date | date: "%B %e, %Y" }} {% if page.author %} by {{ page.author }}{% endif %}
diff --git a/favicon.ico b/favicon.ico
index 71fed341e..6408e6e22 100644
Binary files a/favicon.ico and b/favicon.ico differ
diff --git a/img/codingapi.jpg b/img/codingapi.jpg
new file mode 100644
index 000000000..e7206c8ce
Binary files /dev/null and b/img/codingapi.jpg differ
diff --git a/img/codingapi_dark.jpg b/img/codingapi_dark.jpg
new file mode 100644
index 000000000..61c25f30b
Binary files /dev/null and b/img/codingapi_dark.jpg differ
diff --git a/img/git-version.png b/img/git-version.png
new file mode 100644
index 000000000..47342cc68
Binary files /dev/null and b/img/git-version.png differ
diff --git a/img/git.jpg b/img/git.jpg
new file mode 100644
index 000000000..76d5adb74
Binary files /dev/null and b/img/git.jpg differ
diff --git a/img/jekyll-dark.png b/img/jekyll-dark.png
deleted file mode 100644
index 1be82879b..000000000
Binary files a/img/jekyll-dark.png and /dev/null differ
diff --git a/img/jekyll.png b/img/jekyll.png
deleted file mode 100644
index 86fe8b2cd..000000000
Binary files a/img/jekyll.png and /dev/null differ
diff --git a/img/qrcode.jpg b/img/qrcode.jpg
new file mode 100644
index 000000000..9b9c3d71d
Binary files /dev/null and b/img/qrcode.jpg differ
diff --git a/img/qrcode330.jpg b/img/qrcode330.jpg
new file mode 100644
index 000000000..354f66604
Binary files /dev/null and b/img/qrcode330.jpg differ
diff --git a/index.html b/index.html
index bfcf506e9..8dd59c617 100644
--- a/index.html
+++ b/index.html
@@ -4,9 +4,9 @@
-
Jekyll Template for Project Websites
-
Simple and modern design for publishing blog posts, documentation and many more things about your project.
- You can now clone and start to create a website for your project like this one.
+
CodingApi is an open source organization.
+
+ CodingApi will lead you through the three dimensions of project management, technical architecture and team motivation to build a good R&D team.
Jekyll is a simple, blog-aware, static site generator. It takes a template
- directory containing raw text files in various formats, runs it through
- a converter (like Markdown)
- and our Liquid renderer, and
- spits out a complete, ready-to-publish static website suitable
- for serving with your favorite web server. Jekyll also happens to be the engine
- behind GitHub Pages, which means you can use Jekyll
- to host your project’s page, blog, or website from GitHub’s servers for
- free.
+
What is CodingApi?
+
+ I think that agile thinking needs to go from at least three perspectives: project management, technical ability, and team motivation. Only by establishing a good system of institutions can we achieve agility. Join CodingApi and let everyone explore and learn how to build agile path from 0.
-
-
+
+
-
-
Easy to install and publish
-
Get started by cloning source into GitHub account of your project. Thanks to GitHub Pages,
- it will be automatically compiled and published under your account's (or organisation's) subdomain under github.io.
+
+
Project management
+
+ Today's agile development has been recognized as a good management method for software project development. Combined with today's rapid development of technology, how to better combine technology and project management will be more interesting.
-
-
Modular Styling and Templating
-
This template uses bootstrap-sass along with Bootwatch themes.
- You can change the theme or write your custom one by overwriting bootstrap sass variables for a different color set, font options, etc.
+
+
Technical framework
+
Today is the era of microservices, containerization, and artificial intelligence technology. If you want to make a product well, it does not depend on any excellent technology.
-
-
Git-based source control
-
Leverage from Git version control system by
- maintaining your documentation along with the source code; publish the page when you merge to the master branch.
+
+
Team motivation
+
A good incentive model will make a poor team better, and OKR may be more in line with the incentive model of the R&D team.