I hereby claim:
- I am darryldias on github.
- I am darryldias (https://keybase.io/darryldias) on keybase.
- I have a public key ASBqBc8oQOgXZ8LeDlgDx7bbJRFB8j0cpmstQp_QRBfWBwo
To claim this, I am signing this object:
|| proasdf.com^ |
I hereby claim:
To claim this, I am signing this object:
# This is an example resource file for rTorrent. Copy to | |
# ~/.rtorrent.rc and enable/modify the options as needed. Remember to | |
# uncomment the options you wish to enable. | |
# Maximum and minimum number of peers to connect to per torrent. | |
#min_peers = 40 | |
#max_peers = 100 | |
# Same as above but for seeding completed torrents (-1 = same as downloading) | |
#min_peers_seed = 10 |
A quick example Harp app that uses the correct title for your blog in the correct place.
The App
app/
|- _harp.json
|- _layout.ejs
|- index.ejs
|+ posts/
|- _data.json
<meta name="application-name" content="{{site.title}}"/> | |
<meta name="msapplication-TileColor" content="#00acff"/> | |
{% if site.logo %} | |
<meta name="msapplication-square70x70logo" content="{{site.logo}}"/> | |
<meta name="msapplication-square150x150logo" content="{{site.logo}}"/> | |
<meta name="msapplication-wide310x150logo" content="{{site.logo}}"/> | |
<meta name="msapplication-square310x310logo" content="{{site.logo}}"/> | |
{% endif %} | |
<meta name="msapplication-notification" content="frequency=30;polling-uri=http://notifications.buildmypinnedsite.com/?feed={{site.url}}/atom.xml&id=1;polling-uri2=http://notifications.buildmypinnedsite.com/?feed={{site.url}}/atom.xml&id=2;polling-uri3=http://notifications.buildmypinnedsite.com/?feed={{site.url}}/atom.xml&id=3;polling-uri4=http://notifications.buildmypinnedsite.com/?feed={{site.url}}/atom.xml&id=4;polling-uri5=http://notifications.buildmypinnedsite.com/?feed={{site.url}}/atom.xml&id=5; cycle=1"/> | |
<!-- Created by Darryl Dias http://darryldias.m |
<!-- AdSense Snippet --> | |
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> | |
<ins class="adsbygoogle" | |
style="display:block;" | |
data-ad-client="ca-pub-xxxxxxxxxxxxxxxx" | |
data-ad-slot="xxxxxxxxxx" | |
data-ad-format="auto"></ins> | |
<script> | |
(adsbygoogle = window.adsbygoogle || []).push({}); | |
</script> |
<?php | |
$publisher_id = "ca-pub-xxxxxxxxxxxxxxxx"; | |
$ad_slot = "xxxxxxxxxx"; | |
?> | |
<!doctype html> | |
<html amp <?php echo AMP_HTML_Utils::build_attributes_string( $this->get( 'html_tag_attributes' ) ); ?>> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"> |
<!DOCTYPE html> | |
<html lang="en-US" prefix="og: http://ogp.me/ns#"> | |
<head> | |
<meta charset="utf-8"> | |
<title>{% if is_home %}{{ site.author }} {% elif is_post %} {{ post.title }} {% elif is_link %} {{ link.title }} {% elif is_tag %} {{ tag }} {% elif is_page %} {{ page.title }} {% endif %} | {{ site.name }}</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> |