mirror of
https://github.com/gcushen/hugo-academic.git
synced 2025-07-26 03:00:50 +02:00
Fix homepage section widths and responsiveness
This commit is contained in:
parent
5c23d6b413
commit
e59e1382e5
2 changed files with 62 additions and 73 deletions
|
@ -1,25 +1,27 @@
|
|||
{{ partial "header.html" . }}
|
||||
{{ partial "navbar.html" . }}
|
||||
<div class="container">
|
||||
|
||||
<!-- Flag for jQuery -->
|
||||
<span id="homepage" style="display: none"></span>
|
||||
<!-- Flag for jQuery -->
|
||||
<span id="homepage" style="display: none"></span>
|
||||
|
||||
|
||||
<!-- Biography Section -->
|
||||
{{ range where .Data.Pages "Type" "home" }}
|
||||
{{ if eq .Title "about" }}
|
||||
<section id="bio" class="home-section-wrapper full_width home" style="padding-top: 0;">
|
||||
<!-- Biography Section -->
|
||||
{{ range where .Data.Pages "Type" "home" }}
|
||||
{{ if eq .Title "about" }}
|
||||
<section id="bio" class="home-section">
|
||||
<div class="container">
|
||||
{{ partial "home_biography" . }}
|
||||
</section>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
|
||||
<!-- Publications Section -->
|
||||
{{ $pubs_len := len (where .Data.Pages "Type" "publication") }}
|
||||
{{ if gt $pubs_len 0 }}
|
||||
<section id="publications" class="home-section-wrapper full_width home">
|
||||
<!-- Publications Section -->
|
||||
{{ $pubs_len := len (where .Data.Pages "Type" "publication") }}
|
||||
{{ if gt $pubs_len 0 }}
|
||||
<section id="publications" class="home-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<h2>Recent Publications</h2>
|
||||
|
@ -37,14 +39,16 @@
|
|||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
|
||||
<!-- Blog Posts Section -->
|
||||
{{ $posts_len := len (where .Data.Pages "Type" "post") }}
|
||||
{{ if gt $posts_len 0 }}
|
||||
<section id="posts" class="home-section-wrapper full_width home">
|
||||
<!-- Blog Posts Section -->
|
||||
{{ $posts_len := len (where .Data.Pages "Type" "post") }}
|
||||
{{ if gt $posts_len 0 }}
|
||||
<section id="posts" class="home-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<h2>Posts</h2>
|
||||
|
@ -69,14 +73,16 @@
|
|||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
|
||||
<!-- Projects Section -->
|
||||
{{ $projects_len := len (where .Data.Pages "Type" "project") }}
|
||||
{{ if gt $projects_len 0 }}
|
||||
<section id="projects" class="home-section-wrapper full_width home">
|
||||
<!-- Projects Section -->
|
||||
{{ $projects_len := len (where .Data.Pages "Type" "project") }}
|
||||
{{ if gt $projects_len 0 }}
|
||||
<section id="projects" class="home-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<h2>Projects</h2>
|
||||
|
@ -94,15 +100,17 @@
|
|||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
|
||||
<!-- Custom Sections -->
|
||||
{{ range $index, $page := where .Data.Pages "Type" "home" }}
|
||||
{{ if and (isset .Params "section_id") (not (eq .Params.section_id 0)) }}
|
||||
{{ $title_words := split $page.Title " " }}
|
||||
<section id="{{ range $k, $v := $title_words }}{{ if eq $k 0 }}{{ . | urlize | lower }}{{ end }}{{ end }}" class="home-section-wrapper full_width home">
|
||||
<!-- Custom Sections -->
|
||||
{{ range $index, $page := where .Data.Pages "Type" "home" }}
|
||||
{{ if and (isset .Params "section_id") (not (eq .Params.section_id 0)) }}
|
||||
{{ $title_words := split $page.Title " " }}
|
||||
<section id="{{ range $k, $v := $title_words }}{{ if eq $k 0 }}{{ . | urlize | lower }}{{ end }}{{ end }}" class="home-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<h2>{{ title $page.Title }}</h2>
|
||||
|
@ -111,13 +119,15 @@
|
|||
{{ $page.Content }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
|
||||
<!-- Contact Section -->
|
||||
<section id="contact" class="home-section-wrapper full_width home">
|
||||
<!-- Contact Section -->
|
||||
<section id="contact" class="home-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-4">
|
||||
<h2>Contact</h2>
|
||||
|
@ -126,11 +136,13 @@
|
|||
{{ partial "home_contact.html" . }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Page Footer -->
|
||||
<!-- Page Footer -->
|
||||
<div class="container">
|
||||
{{ partial "footer_container.html" . }}
|
||||
|
||||
</div>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
|
|
|
@ -104,35 +104,16 @@ footer p.powered-by {
|
|||
* Home Sections
|
||||
**************************************************/
|
||||
|
||||
.home-section-wrapper {
|
||||
position: relative;
|
||||
margin-bottom: 45px;
|
||||
border-style: solid;
|
||||
border-color: #f7f7f7;
|
||||
border-width: 0px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
background-attachment: scroll;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.home-section-wrapper.full_width {
|
||||
padding-left: calc(0vw);
|
||||
padding-right: calc(0vw);
|
||||
margin-left: calc(0vw);
|
||||
margin-right: calc(0vw);
|
||||
}
|
||||
|
||||
.home-section-wrapper.full_width.home {
|
||||
padding: 110px 371.25px;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
width: 1905px;
|
||||
margin-left: -382.5px;
|
||||
.home-section {
|
||||
background-color: rgb(255, 255, 255);
|
||||
padding: 110px 0 110px 0;
|
||||
}
|
||||
|
||||
.home-section-wrapper.full_width.home:nth-of-type(even) {
|
||||
.home-section:first-of-type {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.home-section:nth-of-type(even) {
|
||||
background-color: rgb(247, 247, 247);
|
||||
}
|
||||
|
||||
|
@ -365,12 +346,8 @@ ul.ul-edu li .description p.institution {
|
|||
}
|
||||
|
||||
@media (max-width:992px){
|
||||
.home-section-wrapper.full_width.home {
|
||||
padding: 110px 0px;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
margin-left: 0px;
|
||||
width: 100%;
|
||||
.home-section {
|
||||
padding: 60px 0 60px 0;
|
||||
}
|
||||
|
||||
.space-below {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue