Skip to content

Instantly share code, notes, and snippets.

View themeix's full-sized avatar
🏆
No #1 Ghost, Jekyll Marketplace

Themeix LLC themeix

🏆
No #1 Ghost, Jekyll Marketplace
View GitHub Profile
@themeix
themeix / 2019-02-15-welcome-to-jekyll.md
Created January 30, 2019 21:32
Post Options Example in Doxy Theme
---
layout: post
title:  "Blog Post Title"
date:   2019-02-15 18:51:30 +0600
tags: [jekyll, update]
post_image: https://placehold.it/500x600
comment: true
author_url: https://themeix.com
author_designation: Ux/Ui Designer
@themeix
themeix / _config.yml
Last active January 30, 2019 20:34
Doxy Jekyll Theme Configuration
# Site settings
title: "Doxy - Documentation Website"
email: "[email protected]"
description: "Doxy is a responsive Jekyll template for your documentation or knowledgebase website"
keywords: "jekyll, minimal jekyll, jekyll theme, responsive jekyll, seo friendly blog, super fast blog, responsive"
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://doxy.netlify.com" # the base hostname & protocol for your site, e.g. http://example.com
## Theme Options
animated_header: "" #true
@themeix
themeix / html-share-buttons.html
Created October 17, 2018 17:47 — forked from davidsneal/html-share-buttons.html
HTML Share Buttons
<!-- I got these buttons from simplesharebuttons.com -->
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://simplesharebuttons.com&amp;text=Simple Share Buttons" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://simplesharebuttons.com" target="_blank">
@themeix
themeix / examples.md
Created September 2, 2018 18:17 — forked from ErisDS/examples.md
Ghost Filter Query examples

Filter Queries - Example Use Cases

Here are a few example use cases, these use cases combine filter with other parameters to make useful API queries. The syntax for any of this may change between now, implementation, and release - they're meant as illustrative examples :)

Fetch 3 posts with tags which match 'photo' or 'video' and aren't the post with id 5.

api.posts.browse({filter: "tags:[photo, video] + id:-5", limit="3"});

GET /api/posts?filter=tags%3A%5Bphoto%2Cvideo%5D%2Bid%3A-5&limit=3