diff options
author | navanchauhan <navanchauhan@gmail.com> | 2022-10-17 17:08:14 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2022-10-17 17:08:14 -0600 |
commit | 684cb35dfb982aaa89e7b91601c11ad8aec59c92 (patch) | |
tree | b59a8ecc10f0682d484e494907cbb71ab101a674 /templates/document_details.html | |
parent | 01a24fd6b1208626e70d2f79b3d81579b6eb1603 (diff) |
use global variables
Diffstat (limited to 'templates/document_details.html')
-rw-r--r-- | templates/document_details.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/document_details.html b/templates/document_details.html index ea83539..a078e46 100644 --- a/templates/document_details.html +++ b/templates/document_details.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>{{.SearchResults.id}} - DogeKnows</title> + <title>{{.SearchResults.id}} - {{.GlobalVars.Name}}</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"> <script src="https://kit.fontawesome.com/32c297b57b.js" crossorigin="anonymous"></script> </head> @@ -22,7 +22,7 @@ <section class="section"> <nav class="breadcrumb" aria-label="breadcrumbs"> <ul> - <li><a href="/">DogeKnows</a></li> + <li><a href="/">{{.GlobalVars.Name}}</a></li> <li class="is-active"><a href="#" aria-current="page">{{.SearchResults.id}}</a></li> </ul> </nav> @@ -110,9 +110,9 @@ <td>{{.SearchResults.THIRDPARTY}}</td> </tr> <tr> - <th>Full Text (OCR)</th> + <th>Summary</th> <td> - {{.SearchResults.full_text}} + <a href="{{.SummaryPDF}}">Summary</a> </td> </tr> </tbody> |