├── .gitignore ├── static ├── ueditor │ ├── themes │ │ ├── iframe.css │ │ └── default │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── lock.gif │ │ │ ├── scale.png │ │ │ ├── word.gif │ │ │ ├── anchor.gif │ │ │ ├── arrow_up.png │ │ │ ├── cursor_h.gif │ │ │ ├── cursor_h.png │ │ │ ├── cursor_v.gif │ │ │ ├── cursor_v.png │ │ │ ├── filescan.png │ │ │ ├── spacer.gif │ │ │ ├── upload.png │ │ │ ├── arrow_down.png │ │ │ ├── button-bg.gif │ │ │ ├── icons-all.gif │ │ │ ├── pagebreak.gif │ │ │ ├── sparator_v.png │ │ │ ├── toolbar_bg.png │ │ │ ├── videologo.gif │ │ │ ├── wordpaste.png │ │ │ ├── cancelbutton.gif │ │ │ ├── highlighted.gif │ │ │ ├── unhighlighted.gif │ │ │ ├── dialog-title-bg.png │ │ │ ├── neweditor-tab-bg.png │ │ │ ├── table-cell-align.png │ │ │ └── tangram-colorpicker.png │ │ │ └── dialogbase.css │ ├── dialogs │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittip.html │ │ │ ├── edittable.css │ │ │ ├── edittd.html │ │ │ └── edittable.html │ │ ├── image │ │ │ ├── imageUploader.swf │ │ │ ├── images │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── right_focus.jpg │ │ │ │ └── center_focus.jpg │ │ │ └── image.css │ │ ├── template │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.html │ │ │ ├── template.css │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── right_focus.jpg │ │ │ │ └── center_focus.jpg │ │ │ ├── video.css │ │ │ └── video.html │ │ ├── attachment │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ ├── icon_xls.gif │ │ │ │ └── icon_default.png │ │ │ ├── fileTypeMaps.js │ │ │ └── attachment.css │ │ ├── spechars │ │ │ ├── spechars.html │ │ │ └── spechars.js │ │ ├── anchor │ │ │ └── anchor.html │ │ ├── internal.js │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── map │ │ │ └── map.html │ │ └── link │ │ │ └── link.html │ ├── lang │ │ └── zh-cn │ │ │ └── images │ │ │ ├── copy.png │ │ │ ├── music.png │ │ │ ├── upload.png │ │ │ ├── imglabel.png │ │ │ └── localimage.png │ └── third-party │ │ ├── swfupload │ │ ├── swfupload.swf │ │ ├── swfupload_fp9.swf │ │ ├── swfupload.cookies.js │ │ ├── swfupload.proxy.js │ │ └── swfupload.queue.js │ │ └── codemirror │ │ └── codemirror.css ├── images │ ├── f.ico │ ├── es.png │ ├── qq_32.png │ ├── qzone_32.png │ ├── weibo_32.png │ ├── cover │ │ ├── cover.jpg │ │ ├── cover_default.jpg │ │ ├── 201703051349045432.jpg │ │ ├── 201703051847567306.jpg │ │ ├── 201703142313157316.jpg │ │ ├── 201703152314519971.jpg │ │ ├── 201703162101115908.jpg │ │ ├── 201703181708141811.jpg │ │ ├── 201703181740098218.jpg │ │ └── 201703181909057125.jpg │ ├── handshake.png │ └── wechat_32.png ├── plug │ ├── layui │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ ├── css │ │ │ └── modules │ │ │ │ ├── laydate │ │ │ │ └── icon.png │ │ │ │ ├── layer │ │ │ │ └── default │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ │ └── code.css │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── pagesize.js │ │ │ │ ├── util.js │ │ │ │ ├── code.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── flow.js │ │ │ │ ├── upload.js │ │ │ │ ├── tree.js │ │ │ │ └── laypage.js │ │ └── layui.js │ └── font-awesome │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ ├── screen-reader.less │ │ ├── fixed-width.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── core.less │ │ ├── stacked.less │ │ ├── font-awesome.less │ │ ├── bordered-pulled.less │ │ ├── rotated-flipped.less │ │ ├── path.less │ │ ├── animated.less │ │ └── mixins.less │ │ ├── scss │ │ ├── _fixed-width.scss │ │ ├── _screen-reader.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _core.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _bordered-pulled.scss │ │ ├── _rotated-flipped.scss │ │ ├── _path.scss │ │ ├── _animated.scss │ │ └── _mixins.scss │ │ └── HELP-US-OUT.txt ├── css │ ├── detail.css │ ├── home.css │ ├── article.css │ ├── prettify.css │ ├── about.css │ ├── resource.css │ └── timeline.css └── js │ ├── detail.js │ └── fortree.js ├── .gitattributes ├── models ├── response.go ├── config.go ├── category.go ├── comment.go ├── user.go ├── post.go └── base.go ├── conf └── app.conf ├── main.go ├── util ├── functions.go └── pager.go ├── routers └── router.go ├── README.md ├── views ├── admin │ ├── category_add.tpl │ ├── category.tpl │ ├── config.html │ ├── login.html │ ├── list.html │ └── main.tpl └── blog │ ├── about.html │ ├── right.html │ ├── foot.html │ ├── resource.html │ ├── article.html │ ├── head.html │ └── detail.html └── controllers ├── base.go └── blog.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.exe* 3 | -------------------------------------------------------------------------------- /static/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | pre{font-size:14px} -------------------------------------------------------------------------------- /static/images/f.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/f.ico -------------------------------------------------------------------------------- /static/images/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/es.png -------------------------------------------------------------------------------- /static/images/qq_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/qq_32.png -------------------------------------------------------------------------------- /static/images/qzone_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/qzone_32.png -------------------------------------------------------------------------------- /static/images/weibo_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/weibo_32.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-language=go 2 | *.js linguist-language=go 3 | *.html linguist-language=go 4 | -------------------------------------------------------------------------------- /static/images/cover/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/cover.jpg -------------------------------------------------------------------------------- /static/images/handshake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/handshake.png -------------------------------------------------------------------------------- /static/images/wechat_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/wechat_32.png -------------------------------------------------------------------------------- /models/response.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | type Response struct { 4 | Code int 5 | Message interface{} 6 | } 7 | -------------------------------------------------------------------------------- /static/plug/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/font/iconfont.eot -------------------------------------------------------------------------------- /static/plug/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /static/plug/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/font/iconfont.woff -------------------------------------------------------------------------------- /static/plug/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/0.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/1.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/10.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/11.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/12.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/13.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/14.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/15.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/16.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/17.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/18.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/19.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/2.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/20.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/21.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/22.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/23.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/24.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/25.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/26.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/27.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/28.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/29.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/3.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/30.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/31.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/32.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/33.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/34.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/35.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/36.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/37.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/38.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/39.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/4.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/40.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/41.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/42.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/43.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/44.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/45.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/46.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/47.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/48.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/49.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/5.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/50.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/51.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/52.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/53.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/54.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/55.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/56.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/57.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/58.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/59.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/6.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/60.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/61.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/62.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/63.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/64.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/65.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/66.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/67.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/68.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/69.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/7.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/70.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/71.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/8.gif -------------------------------------------------------------------------------- /static/plug/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/images/face/9.gif -------------------------------------------------------------------------------- /static/images/cover/cover_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/cover_default.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /static/images/cover/201703051349045432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/201703051349045432.jpg -------------------------------------------------------------------------------- /static/images/cover/201703051847567306.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/201703051847567306.jpg -------------------------------------------------------------------------------- /static/images/cover/201703142313157316.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/201703142313157316.jpg -------------------------------------------------------------------------------- /static/images/cover/201703152314519971.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/201703152314519971.jpg -------------------------------------------------------------------------------- /static/images/cover/201703162101115908.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/201703162101115908.jpg -------------------------------------------------------------------------------- /static/images/cover/201703181708141811.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/201703181708141811.jpg -------------------------------------------------------------------------------- /static/images/cover/201703181740098218.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/201703181740098218.jpg -------------------------------------------------------------------------------- /static/images/cover/201703181909057125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/images/cover/201703181909057125.jpg -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /static/plug/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/plug/layui/css/modules/laydate/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/css/modules/laydate/icon.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/image/imageUploader.swf -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/imglabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/lang/zh-cn/images/imglabel.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/image/images/left_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/image/images/none_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/image/images/right_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /static/ueditor/third-party/swfupload/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/third-party/swfupload/swfupload.swf -------------------------------------------------------------------------------- /static/plug/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/plug/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/plug/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/image/images/center_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /static/ueditor/third-party/swfupload/swfupload_fp9.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/third-party/swfupload/swfupload_fp9.swf -------------------------------------------------------------------------------- /static/plug/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/plug/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/plug/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /static/plug/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /static/plug/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /static/plug/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/plug/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /static/plug/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echosong/beego_blog/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /static/plug/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /models/config.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | type Config struct { 4 | Id int 5 | Name string 6 | Value string 7 | } 8 | 9 | func (m *Config) TableName() string { 10 | return TableName("config") 11 | } -------------------------------------------------------------------------------- /models/category.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | import "time" 4 | 5 | type Category struct { 6 | Id int 7 | Name string 8 | Created time.Time 9 | Updated time.Time 10 | } 11 | 12 | func (m *Category) TableName() string { 13 | return TableName("category") 14 | } -------------------------------------------------------------------------------- /models/comment.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | import "time" 4 | 5 | type Comment struct { 6 | Id int 7 | Username string 8 | Content string 9 | Created time.Time 10 | PostId int 11 | Ip string 12 | } 13 | 14 | func (m *Comment) TableName() string { 15 | return TableName("comment") 16 | } -------------------------------------------------------------------------------- /conf/app.conf: -------------------------------------------------------------------------------- 1 | appname = beego_blog 2 | httpport = 8099 3 | runmode = dev 4 | 5 | # MYSQL地址 6 | dbhost = localhost 7 | 8 | # MYSQL端口 9 | dbport = 3306 10 | 11 | # MYSQL用户名 12 | dbuser = root 13 | 14 | # MYSQL密码 15 | dbpassword = 16 | 17 | # MYSQL数据库名称 18 | dbname = db_beego 19 | 20 | # MYSQL表前缀 21 | dbprefix = tb_ 22 | 23 | -------------------------------------------------------------------------------- /models/user.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | import "time" 4 | 5 | type User struct { 6 | Id int 7 | Username string 8 | Password string 9 | Email string 10 | LoginCount int 11 | LastTime time.Time 12 | LastIp string 13 | State int8 14 | Created time.Time 15 | Updated time.Time 16 | } 17 | 18 | func (m *User) TableName() string { 19 | return TableName("user") 20 | } -------------------------------------------------------------------------------- /static/plug/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | _ "github.com/Echosong/beego_blog/routers" 5 | "github.com/astaxie/beego" 6 | _ "github.com/go-sql-driver/mysql" 7 | "github.com/Echosong/beego_blog/models" 8 | ) 9 | 10 | 11 | func init() { 12 | models.Init() 13 | beego.BConfig.WebConfig.Session.SessionOn = true 14 | } 15 | 16 | 17 | func main() { 18 | beego.Run() 19 | } 20 | 21 | -------------------------------------------------------------------------------- /models/post.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | import "time" 4 | 5 | type Post struct { 6 | Id int 7 | UserId int 8 | Title string 9 | Url string 10 | Content string 11 | Tags string 12 | Views int 13 | IsTop int8 14 | Created time.Time 15 | Updated time.Time 16 | CategoryId int 17 | Status int8 18 | Types int8 19 | Info string 20 | Image string 21 | } 22 | 23 | func (m *Post) TableName() string { 24 | return TableName("post") 25 | } 26 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /util/functions.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import ( 4 | "crypto/md5" 5 | "fmt" 6 | "strings" 7 | "net/url" 8 | "encoding/base64" 9 | "crypto/rand" 10 | "io" 11 | ) 12 | 13 | func Md5(str string) string { 14 | hash := md5.New() 15 | hash.Write([]byte(str) ) 16 | return fmt.Sprintf("%x", hash.Sum(nil)) 17 | } 18 | 19 | func Rawurlencode(str string) string { 20 | return strings.Replace(url.QueryEscape(str), "+", "%20", -1) 21 | } 22 | 23 | //生成Guid字串 24 | func UniqueId() string { 25 | b := make([]byte, 48) 26 | 27 | if _, err := io.ReadFull(rand.Reader, b); err != nil { 28 | return "" 29 | } 30 | return Md5(base64.URLEncoding.EncodeToString(b)) 31 | } 32 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /routers/router.go: -------------------------------------------------------------------------------- 1 | package routers 2 | 3 | import ( 4 | "github.com/Echosong/beego_blog/controllers" 5 | "github.com/astaxie/beego" 6 | ) 7 | 8 | func init() { 9 | 10 | beego.Router("/", &controllers.BlogController{}, "*:Home") 11 | beego.Router("/home", &controllers.BlogController{}, "*:Home") 12 | beego.Router("/article", &controllers.BlogController{}, "*:Article") 13 | beego.Router("/detail", &controllers.BlogController{}, "*:Detail") 14 | beego.Router("/about", &controllers.BlogController{}, "*:About") 15 | beego.Router("/timeline", &controllers.BlogController{}, "*:Timeline") 16 | beego.Router("/resource", &controllers.BlogController{}, "*:Resource") 17 | beego.Router("/comment", &controllers.BlogController{}, "post:Comment") 18 | 19 | beego.AutoRouter(&controllers.AdminController{}) 20 | } 21 | -------------------------------------------------------------------------------- /models/base.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | import ( 4 | "github.com/astaxie/beego/orm" 5 | "github.com/astaxie/beego" 6 | ) 7 | 8 | func Init() { 9 | dbhost := beego.AppConfig.String("dbhost") 10 | dbport := beego.AppConfig.String("dbport") 11 | dbuser := beego.AppConfig.String("dbuser") 12 | dbpassword := beego.AppConfig.String("dbpassword") 13 | dbname := beego.AppConfig.String("dbname") 14 | if dbport == "" { 15 | dbport = "3306" 16 | } 17 | dsn := dbuser + ":" + dbpassword + "@tcp(" + dbhost + ":" + dbport + ")/" + dbname + "?charset=utf8&loc=Asia%2FShanghai" 18 | orm.RegisterDataBase("default", "mysql", dsn) 19 | orm.RegisterModel(new(User), new(Category),new(Post), new(Config), new(Comment)) 20 | } 21 | 22 | //返回带前缀的表名 23 | func TableName(str string) string { 24 | return beego.AppConfig.String("dbprefix") + str 25 | } 26 | 27 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeMaps.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: taoqili 4 | * Date: 12-2-10 5 | * Time: 下午3:50 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | //文件类型图标索引 9 | var fileTypeMaps = { 10 | ".rar":"icon_rar.gif", 11 | ".zip":"icon_rar.gif", 12 | ".doc":"icon_doc.gif", 13 | ".docx":"icon_doc.gif", 14 | ".pdf":"icon_pdf.gif", 15 | ".mp3":"icon_mp3.gif", 16 | ".xls":"icon_xls.gif", 17 | ".chm":"icon_chm.gif", 18 | ".ppt":"icon_ppt.gif", 19 | ".pptx":"icon_ppt.gif", 20 | ".avi":"icon_mv.gif", 21 | ".rmvb":"icon_mv.gif", 22 | ".wmv":"icon_mv.gif", 23 | ".flv":"icon_mv.gif", 24 | ".swf":"icon_mv.gif", 25 | ".rm":"icon_mv.gif", 26 | ".exe":"icon_exe.gif", 27 | ".psd":"icon_psd.gif", 28 | ".txt":"icon_txt.gif" 29 | }; -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /static/plug/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /static/plug/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /static/ueditor/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- 1 | 3 | 4 |
5 |