sipp11
10 years ago
10 changed files with 162 additions and 6 deletions
@ -0,0 +1,18 @@
|
||||
--- |
||||
layout: post |
||||
title: GAPPS for all ROMs |
||||
created: 1418153341 |
||||
author: |
||||
display_name: sipp11 |
||||
categories: |
||||
- android |
||||
--- |
||||
|
||||
4.3/4.4 |
||||
[xda-developer](http://forum.xda-developers.com/showthread.php?t=2397942) |
||||
|
||||
* Google Stock (~272MB) |
||||
* FULL (~217MB) |
||||
* MINI (~128MB) |
||||
* MICRO (~82MB) |
||||
|
@ -0,0 +1,41 @@
|
||||
--- |
||||
layout: default |
||||
title : Archive |
||||
--- |
||||
<section id="archive"> |
||||
{% assign posts_collate = site.posts %} |
||||
|
||||
{% for post in posts_collate %} |
||||
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} |
||||
{% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %} |
||||
{% capture this_month_num %}{{ post.date | date: "%m" }}{% endcapture %} |
||||
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %} |
||||
{% capture next_month %}{{ post.previous.date | date: "%B" }}{% endcapture %} |
||||
|
||||
{% if forloop.first %} |
||||
<h1 id="{{this_year}}">{{this_year}}</h1> |
||||
<h3 id ="{{this_year}}:{{this_month_num}}">{{this_month}}</h3> |
||||
<ul> |
||||
{% endif %} |
||||
|
||||
<li id="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %e, %Y" }} » <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li> |
||||
|
||||
{% if forloop.last %} |
||||
</ul> |
||||
{% else %} |
||||
{% if this_year != next_year %} |
||||
</ul> |
||||
<h1 id="{{ next_year }}">{{next_year}}</h1> |
||||
<h3 id="{{ next_year }}:{{ next_month }}">{{next_month}}</h3> |
||||
<ul> |
||||
{% else %} |
||||
{% if this_month != next_month %} |
||||
</ul> |
||||
<h3 id="{{ next_year }}:{{ next_month }}">{{next_month}}</h3> |
||||
<ul> |
||||
{% endif %} |
||||
{% endif %} |
||||
{% endif %} |
||||
{% endfor %} |
||||
{% assign posts_collate = nil %} |
||||
</section> |
@ -0,0 +1,29 @@
|
||||
--- |
||||
layout: default |
||||
title: Tags |
||||
--- |
||||
<!--TODO: Find a fix to tags with spaces--> |
||||
<ul class="tag_box inline"> |
||||
{% if site.tags.first[0] != null %}{% comment %} If tags exist {% endcomment %} |
||||
{% for tag in site.tags %}{% comment %} add an element like the following for each tag item {% endcomment %} |
||||
<li><a href="#{{ tag[0] }}"><span class="label label-success">{{ tag[0] }}</span> {% comment %} This is just the tag name {% endcomment %} |
||||
<span>{{ tag[1].size }}</span>{% comment %} This counts the number of posts in a given tag {% endcomment %} |
||||
</a></li> |
||||
{% endfor %} |
||||
{% endif %} |
||||
</ul> |
||||
|
||||
{% for tag in site.tags %} |
||||
<h1 id="{{ tag[0] }}">{{ tag[0] }}</h1> |
||||
<ul> |
||||
{% for tag_post in tag[1] %} |
||||
{% if tag_post.title != null %} |
||||
{% if page.url == tag_post.url %} |
||||
<li class="active"><a href="#" class="active">{{tag_post.title}}</a></li> |
||||
{% else %} |
||||
<li>{{ tag_post.date | date: "%B %e, %Y" }} » <a href="{{tag_post.url}}">{{tag_post.title}}</a></li> |
||||
{% endif %} |
||||
{% endif %} |
||||
{% endfor %} |
||||
</ul> |
||||
{% endfor %} |
Loading…
Reference in new issue