Skip to content

Latest commit

 

History

History
267 lines (230 loc) · 7.63 KB

index.md

File metadata and controls

267 lines (230 loc) · 7.63 KB
layout section_id slides works
default
home
bg small_title title buttons
images/@stock/slide-1.jpg
klass text
bottom-to-top
The perfect theme for
klass text
bottom-to-top
Many purposes
klass items
bottom-to-top
bg klass small_title title buttons
images/@stock/slide-4.jpg
centered-text
klass text
bottom-to-top
We make websites that are
klass text
bottom-to-top
Creative & Powerful
klass items
bottom-to-top
bg small_title title buttons
images/@stock/slide-5.jpg
klass text
bottom-to-top
This is a creative theme that you'll
klass text
bottom-to-top
definitely love...
klass items
bottom-to-top
image title link_to klass desc
images/paperPictures/1.png
Paper Picture
publications.html
graphi-design
Paper Picture Description
image title link_to klass desc
images/paperPictures/2.png
Paper Picture
publications.html
graphi-design
Paper Picture Description
image title link_to klass desc
images/paperPictures/3.png
Paper Picture
publications.html
graphi-design
Paper Picture Description
image title link_to klass desc
images/paperPictures/4.png
Paper Picture
publications.html
graphi-design
Paper Picture Description
image title link_to klass desc
images/paperPictures/5.png
Paper Picture
publications.html
graphi-design
Paper Picture Description
image title link_to klass desc
images/paperPictures/6.png
Paper Picture
publications.html
graphi-design
Paper Picture Description
image title link_to klass desc
images/paperPictures/7.png
Paper Picture
publications.html
graphi-design
Paper Picture Description
image title link_to klass desc
images/paperPictures/8.png
Paper Picture
publications.html
graphi-design
Paper Picture Description
{% include section-header.html title="Internet Research Laboratory" tagline="University of California, Los Angeles (UCLA)" color="#000000" class="big" %}

Welcome

Welcome to the Internet Research Laboratory (IRL), part of the Computer Science department at the University of California, Los Angeles (UCLA). The IRL's research primarily focuses on Named Data Networking. Previously, our research covered fault tolerance in large scale distributed systems, Internet routing infrastructure, inter-domain routing (namely, BGP), and protocol design principles for large-scale, self-organizing systems. Our group has produced numerous publications over the years.

The Internet Research Laboratory is headed by Prof. Lixia Zhang.

{% include section-header.html title="Our recent projects" %}

{% for project in site.data.projects %} {% if forloop.index > 3 %} {% break %} {% endif %}
  <div class='large-4 medium-4 columns'>
    <div class='mod modBlogPost'>
      <div class='content'>
        <p class='date'>{{project.year}}</p>
        <h4><a href="{{project.url}}">{{project.name}}</a></h4>
        <p>{{project.abs}}</p>
        <!--
          <div class="tags">
            {% for cat in post.categories %}
              <a href="#">{{cat | capitalize}}</a>
              {% unless forloop.last %}
                ,
              {% endunless %}
            {% endfor %}
          </div>
        -->
      </div>
    </div>
  </div>

{% endfor %}
{% include section-header.html title="Our recent posts" %}

Here are the most recent blog posts from the members of the IRL team.

{% for post in site.posts %} {% if forloop.index > 3 %} {% break %} {% endif %}
  <div class='large-4 medium-4 columns'>
    <div class='mod modBlogPost'>
      {% for image in post.images %}
        {% unless forloop.first %}
          {% break %}
        {% endunless %}
        <a href="{{post.url}}"><img alt="" src="{{image}}" /></a>
      {% endfor %}
      <div class='content'>
        <p class='date'>{{post.date | date: "%B %d, %Y" }}</p>
        <h4><a href="{{post.url}}">{{post.title}}</a></h4>
        <p>{{post.excerpt}}</p>
        <!--
          <div class="tags">
            {% for cat in post.categories %}
              <a href="#">{{cat | capitalize}}</a>
              {% unless forloop.last %}
                ,
              {% endunless %}
            {% endfor %}
          </div>
        -->
      </div>
    </div>
  </div>

{% endfor %}