Skip to content

Commit

Permalink
Customize for sample_content
Browse files Browse the repository at this point in the history
  • Loading branch information
dondizon committed Feb 12, 2016
1 parent 1d3186c commit c9cd99d
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 53 deletions.
25 changes: 15 additions & 10 deletions _config.yml
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
4 changes: 2 additions & 2 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

<div class="wrapper">

<h2 class="footer-heading">{{ site.title }}</h2>
<h2 class="footer-heading"><a href="{{ site.url }}">{{ site.index_title }}</a></h2>

<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li>{{ site.title }}</li>
<li>{{ site.email_name }}</li>
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div class="wrapper">

<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
<a class="site-title" href="{{ site.home_url }}/">{{ site.home_title }}</a>

<nav class="site-nav">
<a href="#" class="menu-icon">
Expand Down
25 changes: 0 additions & 25 deletions _posts/2016-02-12-welcome-to-jekyll.markdown

This file was deleted.

15 changes: 0 additions & 15 deletions about.md

This file was deleted.

22 changes: 22 additions & 0 deletions search.md
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>

0 comments on commit c9cd99d

Please sign in to comment.