From dee3145e8d3ca394e6aa3b3a534643745419ecd3 Mon Sep 17 00:00:00 2001 From: Adam Culp Date: Fri, 22 May 2020 10:33:05 -0400 Subject: [PATCH] Markdown fix, and added template update for left sidebar menu. Signed-off-by: Adam Culp --- docs/_layouts/defaults.html | 77 +++++++++++++++++++++++++++++++++++++ docs/index.md | 2 +- 2 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 docs/_layouts/defaults.html diff --git a/docs/_layouts/defaults.html b/docs/_layouts/defaults.html new file mode 100644 index 0000000..1f60abc --- /dev/null +++ b/docs/_layouts/defaults.html @@ -0,0 +1,77 @@ + + + + + + + + {% seo %} + + + + +
+
+

{{ site.title | default: site.github.repository_name }}

+ + {% if site.logo %} + Logo + {% endif %} + +

{{ site.description | default: site.github.project_tagline }}

+ + {% if site.github.is_project_page %} +

View the Project on GitHub {{ site.github.repository_nwo }}

+ {% endif %} + + + + {% if site.github.is_user_page %} +

View My GitHub Profile

+ {% endif %} + + {% if site.show_downloads %} + + {% endif %} +
+
+ + {{ content }} + +
+ +
+ +{% if site.google_analytics %} + +{% endif %} + + diff --git a/docs/index.md b/docs/index.md index e5b8ab3..73ecc09 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@ permalink: /index.html --- -##Welcome to the Beachcasts Airtable SDK Documention +## Welcome to the Beachcasts Airtable SDK Documention 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.