Skip to content

Commit

Permalink
page updates
Browse files Browse the repository at this point in the history
  • Loading branch information
apatimar committed Apr 5, 2024
1 parent 46d6d9e commit 8439dac
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 74 additions & 0 deletions _pages/nesycola.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
title: "NesyCola"
layout: textlay
excerpt: "NesyCola"
sitemap: false
permalink: /nesycola/
---


{% for p in site.data.projects %}
{% if p.title == page.title %}
{% assign project = p %}
{% endif %}
{% endfor %}

{% assign project = site.data.projects | where: "title", page.title %}
{% assign project = project[0] %}
<div>
<img src="{{ site.url }}{{ site.baseurl }}/images/picpic/projects/{{ project.logo }}" style="width: 90px; float: left; border: 10px; margin-right: 20px"/>
<br>



<!-- ([Members](#members), [Funding](#funding), [Publications](#pubs)) -->





## {{ project.title }}
<p> {{ project.description }} </p>
</div>
<br>

### Menu

<ul>
<li> <a href="{{ site.url }}{{ site.baseurl }}/domiknows-nlp/">Demo</a> </li>
<li> <a href="{{ site.url }}{{ site.baseurl }}/gluecons/">GLUECons: A generic benchmark for learning under constraints.</a> </li>
<li> <a href="#members">Team</a> </li>
<li> <a href="#fund">Funding</a> </li>
<li> <a href="#pubs">Publications</a> </li>
</ul>
<br><br>
<p> {{ project.info }} </p>
<p><img src="{{ site.url }}{{ site.baseurl }}/images/picpic/projects/{{ project.image }}" class="img-responsive" width="80%" style="margin:auto"></p>
<br>
<br>
<h4 id="members"><b>Team Members</b></h4>
<ul>
<li><em> {{ project.members }}. </em> </li>
<li><em>{{project.graduate_students}} </em> </li>
</ul>

<!-- (<p>Github: <strong><a href="{{ project.webpage }}">{{ project.title }}</a></strong></p>) -->
<br>
<h4 id="fund"><b>Source of funding</b></h4>
<ul>
<li><i>{{ project.funding_resource }}</i> </li>
</ul>

<br>
{% if project.publications %}
<h4 id="pubs">List of <b>publications</b>: </h4>
<br>
{% for pub in project.publications %}
<ul>
<li><strong>{{ pub.title }}</strong>. {{ pub.authors }} {% if pub.webpage %} <a href="{{ pub.webpage }}">More detail</a>. {% endif %} {% if pub.github %} <a href="{{ pub.github }}">GitHub</a>. {% endif %} {% if pub.link %} <a href="{{ pub.link }}">Download</a>. {% endif %} </li>
</ul>
{% endfor %}
{% endif %}
<br>


0 comments on commit 8439dac

Please sign in to comment.