Skip to content

Commit

Permalink
add blog post + clean up files
Browse files Browse the repository at this point in the history
  • Loading branch information
ihuang8 committed Jul 29, 2023
1 parent e870616 commit 9f9afac
Show file tree
Hide file tree
Showing 21 changed files with 49 additions and 42 deletions.
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,4 @@ gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

gem "jekyll-paginate"

gem 'jekyll-redirect-from'
2 changes: 0 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ GEM
webrick (~> 1.7)
jekyll-feed (0.17.0)
jekyll (>= 3.7, < 5.0)
jekyll-paginate (1.1.0)
jekyll-redirect-from (0.16.0)
jekyll (>= 3.3, < 5.0)
jekyll-sass-converter (3.0.0)
Expand Down Expand Up @@ -83,7 +82,6 @@ DEPENDENCIES
http_parser.rb (~> 0.6.0)
jekyll (~> 4.3.2)
jekyll-feed (~> 0.12)
jekyll-paginate
jekyll-redirect-from
minima (~> 2.5)
tzinfo (>= 1, < 3)
Expand Down
3 changes: 1 addition & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@ title: Brown IVL
description: >- # this means to ignore newlines until "baseurl:"
The Interactive 3D Vision & Learning Lab (IVL) led by Srinath Sridar, part of Brown Visual Computing, works on 3D computer vision and machine learning problems to better understand how humans interact with the world. Our research spans 3D spatiotemporal visual understanding objects, humans in motion, and human-object interactions.
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://brown-ivl.github.io" # the base hostname & protocol for your site, e.g. http://example.com
url: "https://ivl.cs.brown.edu" # the base hostname & protocol for your site, e.g. http://example.com

# Build settings
theme: minima
plugins:
- jekyll-paginate
- jekyll-redirect-from
# Exclude from processing.
# The following items will not be processed, by default.
Expand Down
32 changes: 32 additions & 0 deletions _layouts/blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
{%- include head.html -%}
<head>
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/project.css">
</head>
<body>
{% include navbar.html %}
<main>
<div class="container content">
<div class="header">
<h5>{{page.date}}</h5>
<h1>{{page.title}}</h1>
<div class="project-authors">
<h6>
{% for item in page.authors %}
<a class="project-author" href="{{item.author.link}}">{{item.author.name}}<sup>{{item.author.affiliation}}</sup></a>
{% endfor %}
</h6>
</div>
<div class="project-affiliations">
{% for item in page.affiliations %}
<h6 class="affiliation">{{item}}</h6>
{% endfor %}
</div>
</div>
{{ content }}
</div>
</main>
</body>
</html>
File renamed without changes.
Binary file removed assets/images/logos/ARL_logo.png
Binary file not shown.
Binary file removed assets/images/logos/adobe.png
Binary file not shown.
Binary file removed assets/images/logos/adobe_logo.png
Binary file not shown.
Binary file removed assets/images/logos/afosr.png
Binary file not shown.
Binary file removed assets/images/logos/aws_logo.png
Binary file not shown.
Binary file removed assets/images/logos/brown.png
Binary file not shown.
Binary file removed assets/images/logos/brown_white.webp
Binary file not shown.
Binary file removed assets/images/logos/google_research.png
Binary file not shown.
Binary file removed assets/images/logos/nsf.png
Binary file not shown.
Binary file removed assets/images/logos/stanford.png
Binary file not shown.
Binary file removed assets/images/logos/ucl.jpeg
Binary file not shown.
Binary file removed assets/images/logos/ucl.png
Binary file not shown.
Binary file removed assets/images/logos/vbf_logo.jpg
Binary file not shown.
Binary file removed assets/images/logos/zhejiang.png
Binary file not shown.
16 changes: 16 additions & 0 deletions blogs/blog-page-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: blog
title: "Blog Template"
date: July 29, 2023
authors:
- author:
name: "Author Name"
affiliation: 1
link:
affiliations:
- "<sup>1</sup>Brown University"
---

This is a blog post!

{% include full_image.html path="/assets/images/blogs/template/brown_logo.webp" alt="Brown Logo" %}
36 changes: 0 additions & 36 deletions research.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,39 +47,3 @@ permalink: /research
</div>
{% endfor %}
</div>

<!-- <div class="research">
{% for page in site.data.research %}
<div class="research-item row">
<div class="img-div-research col">
<a href="{{ page.projectPage }}" target="_blank">
<img src="assets/{{ page.image }}" class="img-fluid" alt="{{page.title}}">
</a>
</div>
<div class="content-div-research col">
<div class="title-year">
<div class="research-title-div">
<a href="{{ page.projectPage }}" target="_blank">
<h5 class="card-title research-title"> {{page.title}}</h5>
</a>
</div>
<div class="research-year-div">
<h6 class="research-year">{{page.year}}</h6>
</div>
</div>
<h6 class="research-authors">{{page.authors}}</h6>
<h6 class="research-journal">{{page.journal}}</h6>
<div class="research-resources">
{% if page.pdf %}
<a class="research-icon" href="{{page.pdf}}">
<img class="icon-svg" src="/assets/images/icons/material-ui/pdf-small.svg"/> PDF </a>
{% endif %}
{% if page.projectPage %}
<a class="research-icon" href="{{page.projectPage}}">
<img class="icon-svg" src="/assets/images/icons/material-ui/web-small.svg"/> Project Page</a>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div> -->

0 comments on commit 9f9afac

Please sign in to comment.