Skip to content

Instantly share code, notes, and snippets.

View manbearwolf's full-sized avatar
🌴
On vacation

Matt Bott manbearwolf

🌴
On vacation
View GitHub Profile
@manbearwolf
manbearwolf / Contact Page Blogger.xml
Last active September 18, 2023 10:56
How To Add Contact Form (Contact Us Page) in Blogger? http://www.bloggertipstricks.com/blogger-contact-form-page.html
<div id="custom_ContactForm1" class="widget ContactForm">
<div class="contact-form-widget">
<p>Get in touch with us by filling out the form below.</p>
<div class="form">
<form name="contact-form">
<p></p>
Name
<br>
<input type="text" value="" size="30" name="name" id="ContactForm1_contact-form-name" class="contact-form-name">
<p></p>
<script>
/**
* Example 1
*/
anchors.options = {
placement: 'right',
visible: 'hover',
};
.entry-content{
padding-left: 0px;
padding-right: 0px;
}
or
media query...
.full-width >*{
margin-left: 0;
margin-right: 0;
min-width: 1260px;
banner_image...
img src="{{ post.banner_image }}"
<!-- Html Elements for Search -->
<div id="search-container">
<input type="text" id="search-input" placeholder="search...">
<ul id="results-container"></ul>
</div>
<!-- Script pointing to search-script.js or search-script.min.js https://github.com/christian-fei/Simple-Jekyll-Search/tree/master/dest or in header-->
@manbearwolf
manbearwolf / search.json
Last active November 16, 2017 18:18
Simple Jekyll Search JSON Setup
---
layout: null
---
[
{% for post in site.posts %}
{
"title" : "{{ post.title | escape }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"tags" : "{{ post.tags | join: ', ' }}",
@manbearwolf
manbearwolf / search_data.json
Created November 16, 2017 16:30
LunrJS JSON Setup
---
layout: null
---
{
{% for post in site.posts %}
"{{ post.url | slugify }}": {
"title": "{{ post.title | xml_escape }}",
"content" : "{{post.content | strip_html | strip_newlines | remove: " " | escape | remove: "\"}}",
"url": "{{ site.baseurl }}{{ post.url | xml_escape }}",
@manbearwolf
manbearwolf / roughdraft.json
Last active November 16, 2017 07:54
codepen search google
[
{
"title" : "Google",
"tags" : "google, search",
"url" : "https://www.google.com/"
},
{
"title" : "Bing",
"tags" : "bing, search",
"url" : "https://www.bing.com/"
@manbearwolf
manbearwolf / Code Highlighter Language List.txt
Created November 3, 2017 02:45
{% highlight %} {% endhighlight %}
Code Highlighter Languages
actionscript: ActionScript [aliases: as,as3]
apache: configuration files for Apache web server
apiblueprint: Markdown based API description language. [aliases: apiblueprint,apib]
applescript: The AppleScript scripting language by Apple Inc. (http://developer.apple.com/applescript/)
biml: BIML, Business Intelligence Markup Language
c: The C programming language
ceylon: Say more, more clearly.
cfscript: CFScript, the CFML scripting language [aliases: cfc]
@manbearwolf
manbearwolf / add-line-numbers-to-the-code-block-generated-by-markdown.markdown
Last active November 16, 2017 04:12
Add line numbers to the code block generated by markdown