Public link: https://gist.github.com/nerdburn/9a22b78f09d9f36d1700542c0811b517
Base URL: https://api.coffeecontracts.com
This document describes how to authenticate with the Coffee & Contracts API using API keys and what capabilities are available.
Public link: https://gist.github.com/nerdburn/9a22b78f09d9f36d1700542c0811b517
Base URL: https://api.coffeecontracts.com
This document describes how to authenticate with the Coffee & Contracts API using API keys and what capabilities are available.
| did:3:kjzl6cwe1jw14b51r33y1gua8w9at3lo2lkrpf8qdfqai8mftzyb64dj7l5yza1 |
| <!-- assets --> | |
| <script src="{{ static('libs/mediaelement/mediaelement-and-player.min.js') }}"></script> | |
| <!-- media player --> | |
| <script type="text/javascript"> | |
| $(document).ready(function(){ | |
| $('audio').mediaelementplayer(); | |
| }); | |
| </script> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" /> | |
| <meta name="mobile-web-app-capable" content="yes"> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <meta name="apple-mobile-web-app-status-bar-style" content="black"> | |
| <meta name="author" content="{{ site.author }}"> | |
| {% if is_home %} | |
| <meta name="description" content="{{ site.bio|striptags|e }}"> |
| <form action="http://www.mastodonmail.com/s/yourListKeyHere" method="post"> | |
| <input type="hidden" name="mmSuccessUrl" value="yourWebSiteGoesHere" /> | |
| <p><input name="mmName" type="text" placeholder="Name" /></p> | |
| <p><input name="mmEmail" type="email" placeholder="Email" required /></p> | |
| <p><button type="submit">Subscribe</button></p> | |
| </form> |
| $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ |
| {% for year, items in sort_by_year(posts) %} | |
| <h2>{{ year }}</h2> | |
| <ul class="posts"> | |
| {% for post in items %} | |
| <li> | |
| <article itemscope itemtype="http://schema.org/Article"> | |
| <time datetime="{{ post.created_at }}">{{ post.created_at.strftime('%d %b') }}</time> <a href="{{ post.permalink }}" class="permalink">{{ post.title }}</a> | |
| <div class="post-tags"> | |
| {{ post.tags|format_tags(humanize=True) }} | |
| </div> |
| {% if post.content %} | |
| <p>{{ post.content|truncate(200) }}</p> | |
| {% endif %} |
| {% if post.content|wordcount > 0 %} | |
| <p>{{ post.content }}</p> | |
| {% endif %} |
| {{ post.content|striptags }} |