-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Position textual/semantic search UIs as equals with tabs (#455)
- Loading branch information
1 parent
295a152
commit 081eed3
Showing
4 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
<div class="welcome"> | ||
<div class="welcome-image"> | ||
<figure class='image'><img src="{{static 'image/Read-IT-logo-bg.svg'}}" alt="Read-It"></figure> | ||
<figure class='image'> | ||
<img src="{{static 'image/Read-IT-logo-bg.svg'}}" alt="Read-It"> | ||
</figure> | ||
<div class="tabs"> | ||
<ul> | ||
<li data-tab=searchboxView><a> | ||
<span class="icon is-small"> | ||
<i class="fas fa-quote-right" aria-hidden=true></i> | ||
</span> | ||
<span>{{#i18n 'search-tab-text'}}Textual search{{/i18n}}</span> | ||
</a></li> | ||
<li data-tab=semSearchView><a> | ||
<span class="icon is-small"> | ||
<i class="fas fa-code-branch" aria-hidden=true></i> | ||
</span> | ||
<span>{{#i18n 'search-tab-semantic'}}Semantic search{{/i18n}}</span> | ||
</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> |