Skip to content

Commit

Permalink
undo rm
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-jonghoonpark committed Apr 29, 2024
1 parent 84a3c2f commit 24c6bf2
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
49 changes: 49 additions & 0 deletions _pages/search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
layout: page
title: Search
---

<style>
#search-container {
max-width: 100%;
}

input[type=text] {
font-size: normal;
outline: none;
padding: 1rem;
background: rgb(236, 237, 238);
width: 100%;
-webkit-appearance: none;
font-family: inherit;
font-size: 100%;
border: none;
}
#results-container {
margin: .5rem 0;
padding-left: 1.5rem;
}
</style>

<!-- Html Elements for Search -->
<div id="search-container">
<input type="text" id="search-input" placeholder="Search...">
<ol id="results-container"></ol>
</div>

<!-- Script pointing to search-script.js -->
<script src="/search.js" type="text/javascript"></script>

<!-- Configuration -->
<script type="text/javascript">
SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
json: '/search.json',
searchResultTemplate: '<li><a href="{url}" title="{description}">{title}</a></li>',
noResultsText: 'No results found',
limit: 10,
fuzzy: false,
exclude: ['Welcome']
})
</script>
4 changes: 4 additions & 0 deletions _pages/tags.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
layout: tags
title: Tags
---

0 comments on commit 24c6bf2

Please sign in to comment.