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 / 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

@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 / _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 / 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 / navigation.yml
Created January 31, 2019 06:56
Setup Navigation in Doxy Jekyll Theme
- text: Home
url: /
- text: Support
url: /pages/support
- text: Blog
url: /tag/education
submenu:
- text: Blog Left Sidebar
url: /blog-post-left-sidebar
- text: Blog Right Sidebar
@themeix
themeix / .js
Last active February 24, 2019 01:54
content-key-activation
<script>
var site_url = 'http://yourblog.com';
var site_content_key = 'xxxxxxx';
</script>
@themeix
themeix / contact.html
Last active February 24, 2019 01:53
ghost-contact-form-formspree
<form action="https://formspree.io/[email protected]" method="POST">
<input type="text" name="your-name" placeholder="Your Name">
<input type="email" name="_replyto" placeholder="Email" class="float-right">
<textarea name='message' placeholder="Message"></textarea>
<button type="submit" class="btn-c buttonfx curtainup">Send Message</button>
<input class='btn-c buttonfx curtainup' type="submit" value="Send">
</form>
@themeix
themeix / index.html
Created April 19, 2019 22:47
SurehostFooter-Copyright
<div class="footer-bar float-left text-center">
<p>©Copyright - 2019 Sure Host - Designed by <a class="link-hightlight" href="http://themeix.com">Themeix</a> </p>
</div>
@themeix
themeix / index.html
Created April 19, 2019 22:52
Surehost Navigation
<ul id="responsive-menu" class="slimmenu">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="service.html">Services</a>
<ul>
<li><a href="cloud-vps.html">Cloud VPS</a></li>
<li><a href="dedicated-server.html">Dedicated Server</a></li>
<li><a href="reseller-hosting.html">Reseller Hosting</a></li>
<li><a href="shared-hosting.html">Shared Hosting</a></li>
<li><a href="wordpress-hosting.html">Managed Wordpress</a></li>
<li><a href="transfer-domains.html">Domain Transfer</a></li>
@themeix
themeix / index.html
Created April 19, 2019 23:04
Alum HTML Footer Copyright
<div class="footer-bottom text-center pt-5 pb-3">
<p>Copyright - Alum 2019 Designed by <a href="https://themeix.com/">Themeix</a></p>
</div>