mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-19 12:24:20 -04:00
enhancements to the page thumbnail on the site page
This commit is contained in:
parent
9b3f3809cc
commit
366e467501
2 changed files with 14 additions and 4 deletions
2
setup.py
2
setup.py
|
@ -21,7 +21,7 @@ import glob
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.1.dev19',
|
version='1.1.dev20',
|
||||||
description='Distributed web crawling with browsers',
|
description='Distributed web crawling with browsers',
|
||||||
url='https://github.com/internetarchive/brozzler',
|
url='https://github.com/internetarchive/brozzler',
|
||||||
author='Noah Levitt',
|
author='Noah Levitt',
|
||||||
|
|
|
@ -40,12 +40,22 @@
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<h2>Pages</h2>
|
<h2>Pages</h2>
|
||||||
<div class="col-sm-6 col-md-4" ng-repeat="page in pages">
|
<div class="col-sm-6 col-md-4" ng-repeat="page in pages">
|
||||||
<a class="thumbnail" href="{{config.WAYBACK_BASEURL}}/3/{{page.url}}">
|
<div class="thumbnail">
|
||||||
<img style="width:300px;height:190px" src="{{config.WAYBACK_BASEURL}}/3/thumbnail:{{page.url}}" alt="thumb">
|
<img style="border:1px solid #ddd;width:300px;height:190px" src="{{config.WAYBACK_BASEURL}}/3/thumbnail:{{page.url}}" alt="thumb">
|
||||||
<div class="caption">
|
<div class="caption">
|
||||||
<h5>{{page.url}}</h5>
|
<h5>{{page.url}}</h5>
|
||||||
|
<ul class="fa-ul">
|
||||||
|
<li>
|
||||||
|
<span class="fa fa-li fa-camera"></span>
|
||||||
|
<a target="_blank" href="{{config.WAYBACK_BASEURL}}/3/screenshot:{{page.url}}">full size screenshot ></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span class="fa fa-li fa-university"></span>
|
||||||
|
<a target="_blank" href="{{config.WAYBACK_BASEURL}}/3/{{page.url}}">wayback ></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-12" ng-show="loading">
|
<div class="col-sm-12" ng-show="loading">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue