| 
									
										
										
										
											2019-05-05 09:46:59 +08:00
										 |  |  | <div class="card"> | 
					
						
							| 
									
										
										
										
											2020-12-04 02:35:10 -06:00
										 |  |  |   <div class="card-header bg-transparent"> | 
					
						
							| 
									
										
										
										
											2019-08-12 20:22:29 -05:00
										 |  |  |     <h3 class="h5"> | 
					
						
							|  |  |  |       {% if include.badges %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |       <span class="me-2">{{ include.title }}</span> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |       {% assign badges = include.badges | split:"|" %} | 
					
						
							|  |  |  |         {% for badge in badges %} | 
					
						
							|  |  |  |           {% assign badge_data = badge | split:":" %} | 
					
						
							|  |  |  |           {% assign color = badge_data[0] %} | 
					
						
							|  |  |  |           {% assign text = badge_data[1] %} | 
					
						
							|  |  |  |           {% assign tooltip = badge_data[2] | default: false %} | 
					
						
							|  |  |  |           {% assign help_icon = '<i class="far fa-question-circle"></i>' %} | 
					
						
							|  |  |  |           <span | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |             class="badge rounded-pill bg-{{color}}" | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% if tooltip %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               data-bs-toggle="tooltip" | 
					
						
							|  |  |  |               title="{{ tooltip }}" | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               > {{text}} {{ help_icon }} | 
					
						
							|  |  |  |             {% else %} | 
					
						
							|  |  |  |               > {{text}} | 
					
						
							|  |  |  |             {% endif %} | 
					
						
							|  |  |  |           </span> | 
					
						
							|  |  |  |         {% endfor %} | 
					
						
							| 
									
										
										
										
											2019-08-12 20:22:29 -05:00
										 |  |  |       {% else %} | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |         {{ include.title }} | 
					
						
							| 
									
										
										
										
											2019-08-12 20:22:29 -05:00
										 |  |  |       {% endif %} | 
					
						
							|  |  |  |     </h3> | 
					
						
							| 
									
										
										
										
											2019-05-05 09:46:59 +08:00
										 |  |  |   </div> | 
					
						
							|  |  |  |   <div class="card-body"> | 
					
						
							|  |  |  |     <p class="card-text"> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |       <img | 
					
						
							|  |  |  |         src="{{include.image}}" | 
					
						
							| 
									
										
										
										
											2019-09-23 20:49:37 +00:00
										 |  |  |         {% if include.image-dark %} | 
					
						
							|  |  |  |         data-theme-src="{{include.image-dark}}" | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |         height="120" | 
					
						
							|  |  |  |         width="120" | 
					
						
							|  |  |  |         class="panel-pic" | 
					
						
							| 
									
										
										
										
											2019-12-04 15:35:20 +00:00
										 |  |  |         alt="{{include.title}} logo" | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |       > | 
					
						
							|  |  |  |       {{ include.description }} | 
					
						
							| 
									
										
										
										
											2019-08-12 20:22:29 -05:00
										 |  |  |       {% if include.labels %} | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |       {% assign labels = include.labels | split:"|" %} | 
					
						
							| 
									
										
										
										
											2020-05-14 08:18:36 -05:00
										 |  |  |       {% for label in labels %} | 
					
						
							|  |  |  |         {% assign label_data = label | split:"::" %} | 
					
						
							|  |  |  |           {% for label_attr in label_data %} | 
					
						
							|  |  |  |             {% assign attr = label_attr | split:"==" %} | 
					
						
							|  |  |  |             {% if attr[0] == "color" %} | 
					
						
							|  |  |  |               {% assign color = attr[1] %} | 
					
						
							|  |  |  |             {% elsif attr[0] == "link" %} | 
					
						
							|  |  |  |               {% assign link = attr[1] %} | 
					
						
							|  |  |  |             {% elsif attr[0] == "text" %} | 
					
						
							|  |  |  |               {% assign text = attr[1] %} | 
					
						
							|  |  |  |             {% elsif attr[0] == "icon" %} | 
					
						
							|  |  |  |               {% assign icon = attr[1] %} | 
					
						
							|  |  |  |             {% elsif attr[0] == "tooltip" %} | 
					
						
							|  |  |  |               {% assign tooltip = attr[1] %} | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							| 
									
										
										
										
											2020-05-14 08:18:36 -05:00
										 |  |  |           {% endfor %} | 
					
						
							| 
									
										
										
										
											2020-12-04 01:06:04 -06:00
										 |  |  |         {% include badge.html | 
					
						
							| 
									
										
										
										
											2020-05-14 08:18:36 -05:00
										 |  |  |           link=link | 
					
						
							|  |  |  |           color=color | 
					
						
							|  |  |  |           text=text | 
					
						
							|  |  |  |           icon=icon | 
					
						
							|  |  |  |           tooltip=tooltip | 
					
						
							|  |  |  |         %} | 
					
						
							|  |  |  |         {% assign color = nil %} | 
					
						
							|  |  |  |         {% assign link = nil %} | 
					
						
							|  |  |  |         {% assign text = nil %} | 
					
						
							|  |  |  |         {% assign icon = nil %} | 
					
						
							|  |  |  |         {% assign tooltip = nil %} | 
					
						
							|  |  |  |       {% endfor %} | 
					
						
							| 
									
										
										
										
											2019-08-12 20:22:29 -05:00
										 |  |  |       {% endif %} | 
					
						
							| 
									
										
										
										
											2019-05-05 09:46:59 +08:00
										 |  |  |     </p> | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  |     <div class="d-flex justify-content-between flex-column flex-md-row align-items-start align-items-md-center"> | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |       <div class="flow-root flex-shrink-0 me-1"> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |         <a | 
					
						
							|  |  |  |           href="{{include.website}}" | 
					
						
							| 
									
										
										
										
											2019-11-08 16:40:37 -06:00
										 |  |  |           rel="noopener" | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |           class="btn btn-secondary mt-1 me-1"> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           <i class="fas fa-external-link-alt fa-fw"></i> | 
					
						
							|  |  |  |           Website | 
					
						
							|  |  |  |         </a> | 
					
						
							| 
									
										
										
										
											2020-04-25 16:22:19 -07:00
										 |  |  |         {% if include.privacy-policy %} | 
					
						
							|  |  |  |         <a | 
					
						
							|  |  |  |           href="{{include.privacy-policy}}" | 
					
						
							|  |  |  |           rel="noopener" | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |           class="btn btn-primary mt-1 me-1"> | 
					
						
							| 
									
										
										
										
											2020-04-25 16:22:19 -07:00
										 |  |  |           <i class="fas fa-book fa-fw"></i> | 
					
						
							|  |  |  |           Privacy Policy | 
					
						
							|  |  |  |         </a> | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  |         {% if include.tor %} | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           <a | 
					
						
							| 
									
										
										
										
											2019-11-06 23:04:34 +00:00
										 |  |  |             href="{{include.tor}}" | 
					
						
							| 
									
										
										
										
											2019-11-08 16:40:37 -06:00
										 |  |  |             rel="noopener" | 
					
						
							| 
									
										
										
										
											2021-09-22 13:43:24 +05:30
										 |  |  |             class="btn btn-info mt-1 me-1" | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |             data-bs-toggle="tooltip" | 
					
						
							|  |  |  |             data-bs-placement="bottom" | 
					
						
							|  |  |  |             title="Requires specific software to access: torproject.org"> | 
					
						
							| 
									
										
										
										
											2021-09-22 13:43:24 +05:30
										 |  |  |             <span class="ptio-tor text-light"></span> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           </a> | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  |         {% endif %} | 
					
						
							| 
									
										
										
										
											2019-11-06 07:03:29 +00:00
										 |  |  |         {% if include.i2p %} | 
					
						
							|  |  |  |           <a | 
					
						
							|  |  |  |             href="{{include.i2p}}" | 
					
						
							| 
									
										
										
										
											2019-11-08 16:40:37 -06:00
										 |  |  |             rel="noopener" | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |             class="btn btn-blue mt-1 me-1" | 
					
						
							|  |  |  |             data-bs-toggle="tooltip" | 
					
						
							|  |  |  |             data-bs-placement="bottom" | 
					
						
							|  |  |  |             title="Requires specific software to access: geti2p.net"> | 
					
						
							|  |  |  |             <span class="ptio-i2p-garlic btn-icon"></span> | 
					
						
							| 
									
										
										
										
											2019-11-06 07:03:29 +00:00
										 |  |  |           </a> | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  |       </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       <div class="mt-2"> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           {% if include.windows %} | 
					
						
							|  |  |  |             {% if include.windows != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.windows }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-windows fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-windows fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           {% if include.mac %} | 
					
						
							|  |  |  |             {% if include.mac != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.mac }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="ptio-macos fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="ptio-macos fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           {% if include.linux %} | 
					
						
							|  |  |  |             {% if include.linux != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.linux }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="ptio-linux fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="ptio-linux fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |           {% if include.freebsd %} | 
					
						
							|  |  |  |             {% if include.freebsd != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.freebsd }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-freebsd fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-freebsd fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |           {% if include.openbsd %} | 
					
						
							|  |  |  |             {% if include.openbsd != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.openbsd }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="ptio-openbsd fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="ptio-openbsd fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.netbsd %} | 
					
						
							|  |  |  |             {% if include.netbsd != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.netbsd }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="ptio-netbsd fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="ptio-netbsd fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           {% if include.firefox %} | 
					
						
							|  |  |  |             {% if include.firefox != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.firefox }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-firefox fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-firefox fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.chrome %} | 
					
						
							|  |  |  |             {% if include.chrome != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.chrome }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-chrome fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-chrome fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.safari %} | 
					
						
							|  |  |  |             {% if include.safari != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.safari }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-safari fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-safari fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.opera %} | 
					
						
							|  |  |  |             {% if include.opera != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.opera }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-opera fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-opera fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.edge %} | 
					
						
							|  |  |  |             {% if include.edge != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.edge }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-edge fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-edge fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |           {% if include.fdroid %} | 
					
						
							|  |  |  |             {% if include.fdroid != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.fdroid }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="ptio-f-droid fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="ptio-f-droid fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.googleplay %} | 
					
						
							|  |  |  |             {% if include.googleplay != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.googleplay }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-google-play fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-google-play fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           {% if include.android %} | 
					
						
							|  |  |  |             {% if include.android != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.android }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fab fa-android fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fab fa-android fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.ios %} | 
					
						
							|  |  |  |             {% if include.ios != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.ios }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="ptio-ios fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="ptio-ios fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 02:34:41 +00:00
										 |  |  |           {% if include.sailfish %} | 
					
						
							|  |  |  |             {% if include.sailfish != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.sailfish }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="ptio-sailfish-os fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="ptio-sailfish-os fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.web %} | 
					
						
							|  |  |  |             {% if include.web != "" %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <a href="{{ include.web }}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							|  |  |  |                 <i class="fas fa-globe-americas fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               </a> | 
					
						
							|  |  |  |             {% else %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |               <i class="fas fa-globe-americas fa-2x fa-fw d-inline pe-1"></i> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |             {% endif %} | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  | 
 | 
					
						
							|  |  |  |           {{include.icon1}} | 
					
						
							|  |  |  |           {{include.icon2}} | 
					
						
							|  |  |  |           {{include.icon3}} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |           {% if include.github %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |             <a href="{{include.github}}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               <i class="fab fa-github fa-2x fa-fw d-inline"></i> | 
					
						
							|  |  |  |             </a> | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.gitlab %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |             <a href="{{include.gitlab}}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               <i class="fab fa-gitlab fa-2x fa-fw d-inline"></i> | 
					
						
							|  |  |  |             </a> | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.git %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |             <a href="{{include.git}}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               <i class="fab fa-git-square fa-2x fa-fw d-inline"></i> | 
					
						
							|  |  |  |             </a> | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           {% if include.source %} | 
					
						
							| 
									
										
										
										
											2021-05-03 21:13:50 -05:00
										 |  |  |             <a href="{{include.source}}" rel="noopener" class="text-decoration-none text-decoration-none"> | 
					
						
							| 
									
										
										
										
											2019-08-18 07:13:19 -07:00
										 |  |  |               <i class="fas fa-code-branch fa-2x fa-fw d-inline"></i> | 
					
						
							|  |  |  |             </a> | 
					
						
							|  |  |  |           {% endif %} | 
					
						
							| 
									
										
										
										
											2019-08-06 10:12:35 +12:00
										 |  |  | 
 | 
					
						
							|  |  |  |       </div> | 
					
						
							| 
									
										
										
										
											2019-05-05 09:46:59 +08:00
										 |  |  |     </div> | 
					
						
							|  |  |  |   </div> | 
					
						
							|  |  |  | </div> | 
					
						
							| 
									
										
										
										
											2019-08-03 14:41:50 +00:00
										 |  |  | <br> |