{{ content }}
15 |{{ post.title }}
15 |{{ post.excerpt }}
16 |{{ post.title }}
34 |{{ post.excerpt }}
38 |├── CNAME ├── .gitignore ├── img ├── 1.jpg ├── 2.png ├── 3.png ├── 4.jpg ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── 10.png ├── 11.png ├── 12.png ├── 13.jpg └── 13.png ├── Gemfile ├── manifest.json ├── _includes ├── search_result.html ├── header.html ├── disqus.html ├── header_fixed.html ├── footer.html └── head.html ├── about.markdown ├── css └── main.scss ├── _sass ├── _post.scss ├── _base.scss ├── _layout.scss └── _syntax-highlighting.scss ├── _layouts ├── default.html ├── page.html └── post.html ├── _config.yml ├── _posts ├── 2016-02-19-comment.markdown ├── 2016-02-18-funny-android-ads.markdown ├── 2016-02-23-telegram-100-million.markdown ├── 2016-01-07-open-currency-app.markdown ├── 2016-01-06-open-source.markdown ├── 2016-02-20-toffeed.markdown ├── 2016-02-20-timber.markdown ├── 2016-02-22-sleep-as-android.markdown ├── 2016-02-18-opera-max.markdown ├── 2016-02-24-codepath-cliffnotes.markdown ├── 2016-02-22-messenger-multi-account.markdown ├── 2016-02-22-android-arsenal.markdown ├── 2016-01-06-contribute.markdown └── 2016-01-06-introduction.markdown ├── feed.xml ├── README.md ├── index.html └── LICENSE.md /CNAME: -------------------------------------------------------------------------------- 1 | https://appydroid.tk -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | Gemfile.lock 4 | -------------------------------------------------------------------------------- /img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/1.jpg -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/3.png -------------------------------------------------------------------------------- /img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/4.jpg -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/6.png -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/7.png -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/8.png -------------------------------------------------------------------------------- /img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/9.png -------------------------------------------------------------------------------- /img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/10.png -------------------------------------------------------------------------------- /img/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/11.png -------------------------------------------------------------------------------- /img/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/12.png -------------------------------------------------------------------------------- /img/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/13.jpg -------------------------------------------------------------------------------- /img/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/appydroid/gh-pages/img/13.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | gem 'jekyll-sitemap' 2 | gem 'jekyll-paginate' 3 | gem 'kramdown' 4 | gem 'jekyll' -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "appydroid", 3 | "name": "appydroid", 4 | "start_url": "/index.html", 5 | "display": "standalone" 6 | "theme_color": "#009688" 7 | } -------------------------------------------------------------------------------- /_includes/search_result.html: -------------------------------------------------------------------------------- 1 | 2 |
{{ content }}
15 |{{ content }}
15 |{{ post.excerpt }}
16 |{{ post.excerpt }}
38 |