diff --git a/_includes/header.html b/_includes/header.html index f76f2e2fb429c4f9a92b92ccfa5f2e34599b7ecf..cd5fdd0e4d418d5d33010f58a25730a35a663daa 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -13,6 +13,7 @@ <li><a {% if page.section == 'Events' %} class="active" {% endif %} href="{{ site.baseurl }}/events">Events</a></li> <li><a {% if page.section == 'News' %} class="active" {% endif %} href="{{ site.baseurl }}/news">News</a></li> <li><a {% if page.section == 'Contact' %} class="active" {% endif-%} href="{{ site.baseurl }}/contact">Contact</a></li> + <li><a {% if page.section == 'Search' %} class="active" {% endif-%} href="{{ site.baseurl }}/search">Search</a></li> </ul> </div> </div> diff --git a/_layouts/search.html b/_layouts/search.html new file mode 100644 index 0000000000000000000000000000000000000000..7c7a2565c9a2e00be8bd38a1411319581d7800e3 --- /dev/null +++ b/_layouts/search.html @@ -0,0 +1,19 @@ +--- +layout: default +--- + +<article> + + <div id="left-column"></div> + + <div> + <header> + <h1> + {{ page.title | escape }} + </h1> + </header> + + <input class="search" placeholder="Search " /> + <button type="submit" value="Search with Google">Search with Google</button> + </div> +</article> diff --git a/_sass/elixir/_layout.scss b/_sass/elixir/_layout.scss index b441a6e262280bf6bd567457e7a0b75225376a92..6f597f2e2a3302b2f4ca0e501e2ff4835ea7b2fb 100644 --- a/_sass/elixir/_layout.scss +++ b/_sass/elixir/_layout.scss @@ -442,3 +442,19 @@ div.post { } } } + +input.search { + width: 400px; + height: 35px; + font-size: 20px; + padding: 5px; + padding-left: 10px; + border-radius: 5px; + border: solid 3px #f47d21; +} + +button.search { + margin-left: 8px; + height: 50px; + font-size: 20px; +} diff --git a/elixir-theme.gemspec b/elixir-theme.gemspec index 57939efad1600a67792d3700c0882b8f8cc27a4b..aadf7c6c394f25d609283c7da1d9916e714e7c28 100644 --- a/elixir-theme.gemspec +++ b/elixir-theme.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "elixir-theme" - spec.version = "0.2.10" + spec.version = "0.2.11" spec.authors = ["jacek.lebioda"] spec.email = ["jacek.lebioda@uni.lu"]