diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-06-03 15:49:25 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-06-03 15:49:25 -0700 |
commit | d7e802610baf6b14409bfde9e345968aed08a641 (patch) | |
tree | 23cdb9452e57de71170551808c256adfc7a24a3f /fatcat_scholar/templates/base.html | |
parent | 2f4cff0265c73f4e4b975176de118bf767d44cd2 (diff) | |
download | fatcat-scholar-d7e802610baf6b14409bfde9e345968aed08a641.tar.gz fatcat-scholar-d7e802610baf6b14409bfde9e345968aed08a641.zip |
start fleshing out /about and /help
Diffstat (limited to 'fatcat_scholar/templates/base.html')
-rw-r--r-- | fatcat_scholar/templates/base.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/fatcat_scholar/templates/base.html b/fatcat_scholar/templates/base.html index e8969d0..b7ee461 100644 --- a/fatcat_scholar/templates/base.html +++ b/fatcat_scholar/templates/base.html @@ -153,7 +153,7 @@ </div> </div> <div class="ui twelve wide column"> - <form class="" id="search_form" action="{{ lang_prefix }}/search") }}" method="get" role="search" aria-label="papers" itemprop="potentialAction" itemscope itemtype="https://schema.org/SearchAction"> + <form class="" id="search_form" action="{{ lang_prefix }}/search" method="get" role="search" aria-label="papers" itemprop="potentialAction" itemscope itemtype="https://schema.org/SearchAction"> <meta itemprop="target" content="https://{{ settings.SCHOLAR_DOMAIN }}/fulltext/search?q={q}"/> <div class="ui form"> <div class="ui action input large fluid"> @@ -167,7 +167,7 @@ <div style="display: flex; width: 100%; justify-content: space-between; padding-top: 0.5em;"> <div></div> <div> - <a href="#" style="order: -1;">{{ _("User Guide") }}</a> + <a href="{{ lang_prefix }}/help" style="order: -1;">{{ _("User Guide") }}</a> </div> </div> </div> @@ -207,20 +207,20 @@ <div class="three wide column"> <h4 class="ui inverted header">scholar.archive.org</h4> <div class="ui inverted link list"> - <a href="#" class="item">How It Works</a> - <a href="#" class="item">Content Sources</a> - <a href="#" class="item">Text and Data Mining</a> - <a href="#" class="item">Discussion Forum</a> - <a href="#" class="item">Statistics</a> + <a href="{{ lang_prefix }}/about#howitworks" class="item">{{ _("How It Works") }}</a> + <a href="{{ lang_prefix }}/about#sources" class="item">{{ _("Content Sources") }}</a> + <a href="{{ lang_prefix }}/about#tdm" class="item">{{ _("Text and Data Mining") }}</a> + <a href="#" class="item">{{ _("Discussion Forum") }}</a> + <a href="#" class="item">{{ _("Statistics") }}</a> <a href="/help" class="item">{{ _("Help") }}</a> </div> </div> <div class="three wide column"> <h4 class="ui inverted header">Open Infrastructure</h4> <div class="ui inverted link list"> - <a target="_blank" href="https://fatcat.wiki" class="item">Editable Catalog (Fatcat)</a> - <a target="_blank" href="https://guide.fatcat.wiki" class="item">Contribute</a> - <a target="_blank" href="/api/redoc" class="item">Search API</a> + <a target="_blank" href="https://fatcat.wiki" class="item">{{ _("Editable Catalog (Fatcat)") }}</a> + <a target="_blank" href="https://guide.fatcat.wiki" class="item">{{ _("Contribute") }}</a> + <a target="_blank" href="/api/redoc" class="item">{{ _("Search API") }}</a> <a target="_blank" href="https://status.fatcat.wiki" class="item">{{ _("Service Status") }}</a> <a target="_blank" href="https://github.com/internetarchive/fatcat-scholar" class="item">{{ _("Source Code") }}</a> </div> |