forked from EvoStream/sample_content
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
40 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
# Welcome to Jekyll! | ||
# Welcome to EMS Documents | ||
# | ||
# This config file is meant for settings that affect your whole blog, values | ||
# which you are expected to set up once and rarely need to edit after that. | ||
# For technical reasons, this file is *NOT* reloaded automatically when you use | ||
# 'jekyll serve'. If you change this file, please restart the server process. | ||
|
||
# Site settings | ||
title: Your awesome title | ||
email: [email protected] | ||
title: EvoStream Media Server | ||
index_title: Documentation main index | ||
home_title: Back to EvoStream.com | ||
home_url: "https://evostream.com" | ||
email_name: Administrator | ||
email: [email protected] | ||
description: > # this means to ignore newlines until "baseurl:" | ||
Write an awesome description for your new site here. You can edit this | ||
line in _config.yml. It will appear in your document head meta (for | ||
Google search results) and in your feed.xml site description. | ||
baseurl: "" # the subpath of your site, e.g. /blog | ||
url: "http://yourdomain.com" # the base hostname & protocol for your site | ||
twitter_username: jekyllrb | ||
github_username: jekyll | ||
EvoStream, 1010 Turquoise, Suite 101, | ||
San Diego, CA 92109, California, USA. | ||
#baseurl: "/sample_content" # the subpath of your site, e.g. /blog | ||
#url: "http://docs.evostream.com" # the base hostname & protocol for your site | ||
baseurl: "" # for local test only | ||
url: "http://localhost:4000" # for local test only | ||
twitter_username: EvoStreamInc | ||
github_username: EvoStream | ||
|
||
# Build settings | ||
markdown: kramdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
layout: page | ||
title: Search Sample Content | ||
permalink: /search/ | ||
--- | ||
|
||
<p>Enter a search string then press Enter or click Search</p> | ||
|
||
<script> | ||
function googleSearch() { | ||
var searchString = document.getElementById("searchString").value; | ||
var prefix = "https://www.google.com/search?q="; | ||
var suffix = "%20site:docs.evostream.com/sample_content"; | ||
searchURL = prefix + encodeURI(searchString) + suffix; | ||
window.open(searchURL); | ||
} | ||
</script> | ||
|
||
<form onChange="googleSearch()"> | ||
<input type="text" id="searchString" size="50"><br><br> | ||
<input type="button" onClick="googleSearch()" value="Search"><br> | ||
</form> |