Homepage updates
This commit is contained in:
parent
3fced3d550
commit
5c69f1081f
2 changed files with 36 additions and 23 deletions
|
@ -298,3 +298,17 @@ ul#individual-facultyMemberships li {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.jumbotron {
|
||||||
|
background-color: transparent;
|
||||||
|
color: #ffffff;
|
||||||
|
text-align: center;
|
||||||
|
text-shadow: 1px 1px 4px #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jumbotron p {
|
||||||
|
color: #dddddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero {
|
||||||
|
background: #283a4b;
|
||||||
|
}
|
||||||
|
|
|
@ -38,29 +38,26 @@
|
||||||
<div class="jumbotron">
|
<div class="jumbotron">
|
||||||
<h1>${i18n().intro_title}</h1>
|
<h1>${i18n().intro_title}</h1>
|
||||||
</div>
|
</div>
|
||||||
<section id="search-home" role="region">
|
<form id="search-homepage" action="${urls.search}" name="search-home" role="search" method="post" placeholder="${i18n().search_form}" class="form-horizontal">
|
||||||
<h3>${i18n().intro_searchvivo} <span class="search-filter-selected">filteredSearch</span></h3>
|
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>${i18n().search_form}</legend>
|
<div class="input-group">
|
||||||
<form id="search-homepage" action="${urls.search}" name="search-home" role="search" method="post" >
|
<input type="text" name="querytext" class="form-control" value="" autocapitalize="off" />
|
||||||
<div id="search-home-field">
|
<div class="input-group-btn">
|
||||||
<input type="text" name="querytext" class="search-homepage" value="" autocapitalize="off" />
|
<select class="form-control" id="classgroup" name="classgroup">
|
||||||
<input type="submit" value="${i18n().search_button}" class="search" />
|
<option value="">${i18n().all_capitalized}</option>
|
||||||
<input type="hidden" name="classgroup" value="" autocapitalize="off" />
|
<#list vClassGroups as group>
|
||||||
|
<#if (group.individualCount > 0)>
|
||||||
|
<option value="${group.uri}">${group.displayName?capitalize}</option>
|
||||||
|
</#if>
|
||||||
|
</#list>
|
||||||
|
</select>
|
||||||
|
<button class="btn btn-default" type="submit">
|
||||||
|
<span class="icon-search">${i18n().search_button}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a class="filter-search filter-default" href="#" title="${i18n().intro_filtersearch}">
|
|
||||||
<span class="displace">${i18n().intro_filtersearch}</span>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<ul id="filter-search-nav">
|
|
||||||
<li><a class="active" href="">${i18n().all_capitalized}</a></li>
|
|
||||||
<@lh.allClassGroupNames vClassGroups! />
|
|
||||||
</ul>
|
|
||||||
</form>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</section> <!-- #search-home -->
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
|
@ -76,13 +73,15 @@
|
||||||
|
|
||||||
<div class="row faculty-home">
|
<div class="row faculty-home">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="col-md-12">
|
<div class="col-md-4">
|
||||||
<!-- List of research classes: e.g., articles, books, collections, conference papers -->
|
<!-- List of research classes: e.g., articles, books, collections, conference papers -->
|
||||||
<@lh.researchClasses />
|
<@lh.researchClasses />
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
<!-- List of four randomly selected faculty members -->
|
<!-- List of four randomly selected faculty members -->
|
||||||
<@lh.facultyMbrHtml />
|
<@lh.facultyMbrHtml />
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
<!-- List of randomly selected academic departments -->
|
<!-- List of randomly selected academic departments -->
|
||||||
<@lh.academicDeptsHtml />
|
<@lh.academicDeptsHtml />
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue