diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-11 10:43:54 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-13 14:36:59 -0700 |
commit | 55ebdd8f06e73ef904e8c216a6e8a67f7fded8d2 (patch) | |
tree | 57f12af517a33c41f37de016d555add00bf56c58 /python/fatcat_web/templates/home.html | |
parent | 016315f69a03473625d4d8ea3c450eb814e26911 (diff) | |
download | fatcat-55ebdd8f06e73ef904e8c216a6e8a67f7fded8d2.tar.gz fatcat-55ebdd8f06e73ef904e8c216a6e8a67f7fded8d2.zip |
start work on 'generic' search box
Diffstat (limited to 'python/fatcat_web/templates/home.html')
-rw-r--r-- | python/fatcat_web/templates/home.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/fatcat_web/templates/home.html b/python/fatcat_web/templates/home.html index 26c45f03..afaab559 100644 --- a/python/fatcat_web/templates/home.html +++ b/python/fatcat_web/templates/home.html @@ -14,11 +14,11 @@ <div class="ui text container"> <h1 class="ui header inverted huge centered">Perpetual Access to Millions of Open Research Publications From Around The World</h1> <br> - <form class="" action="/release/search" method="get" role="search" aria-label="papers" itemprop="potentialAction" itemscope itemtype="https://schema.org/SearchAction"> - <meta itemprop="target" content="https://{{ config.FATCAT_DOMAIN }}/release/search?q={q}"/> + <form class="" action="/search" method="get" role="search" aria-label="papers" itemprop="potentialAction" itemscope itemtype="https://schema.org/SearchAction"> + <meta itemprop="target" content="https://{{ config.FATCAT_DOMAIN }}/search?q={q}"/> <div class="ui form"> <div class="ui action input huge fluid"> - <input type="text" placeholder="Query..." name="q" aria-label="search release metadata" required itemprop="query-input"> + <input type="text" placeholder="Query..." name="q" aria-label="search metadata" required itemprop="query-input"> <button class="ui green button">Search</button> </div> </div> |