Skip to content

Commit ae93991

Browse files
authored
Merge pull request #41 from adamculp/master
Template update and markdown fix
2 parents 74f058d + 6b0b68b commit ae93991

File tree

2 files changed

+78
-1
lines changed

2 files changed

+78
-1
lines changed

docs/_layouts/defaults.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
{% seo %}
9+
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10+
<!--[if lt IE 9]>
11+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
12+
<![endif]-->
13+
</head>
14+
<body>
15+
<div class="wrapper">
16+
<header>
17+
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
18+
19+
{% if site.logo %}
20+
<img src="{{site.logo | relative_url}}" alt="Logo" />
21+
{% endif %}
22+
23+
<p>{{ site.description | default: site.github.project_tagline }}</p>
24+
25+
{% if site.github.is_project_page %}
26+
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p>
27+
{% endif %}
28+
29+
<ul>
30+
<li><a href="start.html">Getting Started</a></li>
31+
<li><a href="connection.html">Client Connection</a></li>
32+
<li><a href="create.html">Create</a></li>
33+
<li><a href="read.html">Read</a></li>
34+
<li><a href="update.html">Update</a></li>
35+
<li><a href="update.html">Update</a></li>
36+
<li><a href="replace.html">Replace</a></li>
37+
<li><a href="delete.html">Delete</a></li>
38+
<li><a href="list.html">List</a></li>
39+
</ul>
40+
41+
{% if site.github.is_user_page %}
42+
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
43+
{% endif %}
44+
45+
{% if site.show_downloads %}
46+
<ul class="downloads">
47+
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
48+
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
49+
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
50+
</ul>
51+
{% endif %}
52+
</header>
53+
<section>
54+
55+
{{ content }}
56+
57+
</section>
58+
<footer>
59+
{% if site.github.is_project_page %}
60+
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
61+
{% endif %}
62+
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
63+
</footer>
64+
</div>
65+
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
66+
{% if site.google_analytics %}
67+
<script>
68+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
69+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
70+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
71+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
72+
ga('create', '{{ site.google_analytics }}', 'auto');
73+
ga('send', 'pageview');
74+
</script>
75+
{% endif %}
76+
</body>
77+
</html>

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
permalink: /index.html
33
---
44

5-
##Welcome to the Beachcasts Airtable SDK Documention
5+
## Welcome to the Beachcasts Airtable SDK Documention
66

77
The purpose of this project is to make using the Airtable API as simple as possible. Also, it enables PHP developers to use current conventions to interact with the REST style API at Airtable. This is done by including the GuzzleHttp package to abstract the cURL usage, and facilitate PSR-7 standards if your application uses it. However, you are not forced to comply with PSR-7 if so desired because it happens internally for the SDK.
88

0 commit comments

Comments
 (0)