Skip to content

Commit

Permalink
Upload the website
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmanidashti committed Oct 6, 2024
1 parent 4cc5d18 commit 86f0988
Show file tree
Hide file tree
Showing 257 changed files with 15,441 additions and 2 deletions.
Binary file added .DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "webrick", "~> 1.7"
gem "jekyll", "~> 4.3"
gem "jekyll-environment-variables"
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) Robert Austin - [email protected] - github.com/zerostaticthemes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 4 additions & 2 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# sigir2024
SIGIR 2024
# LLM4EVal
Large Language Model for Evaluation in IR

SIGIR 2024
51 changes: 51 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
baseurl: '/'
permalink: pretty
title: 'LLM4Eval'

logo:
mobile: "images/logo/logo-mobile.svg"
mobile_height: "32px"
mobile_width: "32px"
desktop: "images/logo/logo4.svg"
desktop_height: "32px"
desktop_width: "120px"

home:
limit_services: 6

collections:
services:
output: true
sort_by: weight
team:
output: true

defaults:
- scope:
path: ""
type: "services"
values:
layout: "service"
- scope:
path: ""
type: "team"
values:
layout: "team"

sass:
style: compressed # possible values: nested expanded compact compressed

plugins:
- jekyll-environment-variables

exclude:
- Gemfile
- Gemfile.lock
- node_modules
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
- LICENSE.md
- LICENSE
- README.md
3 changes: 3 additions & 0 deletions _data/contact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
email: '[email protected]'
phone:
contact_button_link: 'cfp'
29 changes: 29 additions & 0 deletions _data/features.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[
{
"title": "Free Consultation",
"description": "New clients receive an obligation free consultation.",
"image": {
"url": "images/features/noun_branding_1885335.svg",
"width": 80,
"height": 80
}
},
{
"title": "Certified Accountants",
"description": "All members of our team are certified accountants.",
"image": {
"url": "images/features/noun_The Process_1885341.svg",
"width": 80,
"height": 80
}
},
{
"title": "Tax Compliance",
"description": "We stay up to date on the latest changes to the tax code.",
"image": {
"url": "images/features/noun_3d modeling_1885342.svg",
"width": 80,
"height": 80
}
}
]
33 changes: 33 additions & 0 deletions _data/menus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
main:
- name: "Workshop"
url: "/workshop/"
weight: 2
- name: "CFP"
url: "/cfp/"
weight: 3
- name: "Challenge"
url: "/challenge/"
weight: 4
- name: "Accepted Papers"
url: "/papers/"
weight: 5
- name: "Program"
url: "/program/"
weight: 6
- name: "Organisers"
url: "/organisers/"
weight: 7
# - name: "About"
# url: "/about/"
# weight: 7
# - name: "Contact"
# url: "/contact/"
# weight: 8

footer:
- name: "Home"
url: "/"
weight: 1
# - name: "Contact"
# url: "/contact/"
# weight: 2
4 changes: 4 additions & 0 deletions _data/seo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
google_analytics_id: ""
meta_twitter_site: "@zerostaticio"
meta_twitter_creator: "@zerostaticio"
copyright_text: 'Free Jekyll theme by <a class="zerostatic" href="https://www.zerostatic.io">www.zerostatic.io</a>'
18 changes: 18 additions & 0 deletions _data/social.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
{
"name": "Github",
"link": "https://github.com/llm4eval",
"image": "images/social/github.svg"
},
{
"name": "Twitter",
"link": "https://twitter.com/llm4eval",
"image": "images/social/twitter.svg"
},
{
"name": "Email",
"link": "mailto:[email protected]",
"image": "images/social/email.svg"
}

]
19 changes: 19 additions & 0 deletions _includes/call.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<div class="call">
<div class="call-box-top">
{% if site.data.contact.phone %}
<div class="call-phone"><strong>Phone: </strong> {{ site.data.contact.phone }} </div>
{% endif %}
{% if site.data.contact.email %}
<div class="call-email"><strong>Email: </strong>
<a href="mailto:{{ .site.data.contact.email }}">
{{ site.data.contact.email }}
</a>
</div>
{% endif %}
</div>
{% if include.show_button %}
<div class="call-box-bottom">
<a href="{{ site.data.contact.contact_button_link }}" class="button">Call For Paper</a>
</div>
{% endif %}
</div>
19 changes: 19 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<div class="footer">
<div class="container">
<div class="row">
<div class="col-12">
<div class="footer-inner">
<h2 class="footer-title">{{site.title}}</h2>
<ul>
{% assign footermenu = site.data.menus.footer | sort: 'weight' %}
{% for item in footermenu %}
<li class="{% if item.url == page.url %}active{% endif %}">
<a href="{{ item.url | relative_url }}">{{ item.name }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</div>
26 changes: 26 additions & 0 deletions _includes/google-analytics.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{% if jekyll.environment == "production" %}
{% assign gid = site.env.NETLIFY_GOOGLE_ANALYTICS_ID %}
{% if gid %}
<script async src="https://www.googletagmanager.com/gtag/js?id={{ gid }}"></script>
<script>
window.dataLayer = window.dataLayer || [];

function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '{{ $gid }}');
</script>
{% elsif site.data.seo.google_analytics_id %}
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.data.seo.google_analytics_id }}"></script>
<script>
window.dataLayer = window.dataLayer || [];

function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '{{ site.data.seo.google_analytics_id }}');
</script>
{% endif %}
{% endif %}
5 changes: 5 additions & 0 deletions _includes/hamburger.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<button id="toggle-main-menu-mobile" class="hamburger hamburger--slider" type="button" aria-label="Mobile Menu">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
12 changes: 12 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div class='header'>
<div class="container">
<div class="logo">
<a href="{{ site.baseurl }}/"><img width="{{ site.logo.desktop_width }}" height="{{ site.logo.desktop_height }}" alt="{{ site.title }}" src="{{ site.logo.desktop | relative_url }}" /></a>
</div>
<div class="logo-mobile">
<a href="{{ site.baseurl }}"><img width="{{ site.logo.mobile_width }}" height="{{ site.logo.mobile_height }}" alt="{{ site.title }}" src="{{ site.logo.mobile | relative_url }}" /></a>
</div>
{% include main-menu.html %}
{% include hamburger.html %}
</div>
</div>
10 changes: 10 additions & 0 deletions _includes/main-menu-mobile.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<div id="main-menu-mobile" class="main-menu-mobile">
{% assign mainmenu = site.data.menus.main | sort: 'weight' %}
<ul>
{% for item in mainmenu %}
<li class="{% if item.url == page.url %}active{% endif %}">
<a href="{{ item.url | relative_url }}">{{ item.name }}</a>
</li>
{% endfor %}
</ul>
</div>
10 changes: 10 additions & 0 deletions _includes/main-menu.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<div id="main-menu" class="main-menu">
{% assign mainmenu = site.data.menus.main | sort: 'weight' %}
<ul>
{% for item in mainmenu %}
<li class="{% if item.url == page.url %}active{% endif %}">
<a href="{{ item.url | relative_url }}">{{ item.name }}</a>
</li>
{% endfor %}
</ul>
</div>
5 changes: 5 additions & 0 deletions _includes/social.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div class="social">
{% for item in site.data.social %}
<a href="{{ item.link }}" target="blank"><img src="{{ item.image | relative_url }}" title="{{ item.name }}" alt="{{ item.name }}" /></a>
{% endfor %}
</div>
16 changes: 16 additions & 0 deletions _includes/sub-footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<div class="sub-footer">
<div class="container">
<div class="row">
<div class="col-12">
<div class="sub-footer-inner">
{% if site.data.social %}
{% include social.html %}
{% endif %}
{% if site.data.seo.copyright_text %}
<div class="copyright">{{ site.data.seo.copyright_text }}</div>
{% endif %}
</div>
</div>
</div>
</div>
</div>
17 changes: 17 additions & 0 deletions _layouts/contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: Contact
layout: default
bodyClass: "page-contact"
---

<div class="container pb-6 pt-6 pt-md-10 pb-md-10">
<div class="row justify-content-start">
<div class="col-12 col-md-8">
<div class="service service-single">
<h1 class="title">{{page.title}}</h1>
{% include call.html show_button=false %}
<div class="content mt-4">{{content}}</div>
</div>
</div>
</div>
</div>
40 changes: 40 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<title>{% if page.title %}{{page.title}}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="{{ '/images/favicon-32x32.svg' | relative_url }}">
<!-- Google Fonts CDN -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet">
<!-- Self host font -->
<!-- <link rel="preload" href="{{ '/assets/fonts/playfair-display.woff2' | relative_url }}" as="font" type="font/woff2" crossorigin> -->
<link href="{{ '/assets/css/style.css' | relative_url }}" rel="stylesheet">

{% if page.description %}<meta name="description" content="{{ page.description }}" />{% endif %}
{% if page.meta_title %}<meta property="og:title" content="{{ page.meta_title }}"/>{% else %}<meta property="og:title" content="{{ page.title }}"/>{% endif %}
<meta property="og:type" content="website"/>
<meta property="og:url" content="{{ url }}"/>
{% if page.image %}<meta property="og:image" content="{{ page.image | absolute_url }}"/>{% endif %}
{% if page.description %}<meta property="og:description" content="{{ page.description }}"/>{% endif %}
<meta name="twitter:card" content="summary"/>
{% if site.data.seo.meta_twitter_site %}<meta name="twitter:site" content="{{ site.seo.meta_twitter_site }}"/>{% endif %}
{% if site.data.seo.meta_twitter_creator %}<meta name="twitter:creator" content="{{ site.seo.meta_twitter_creator }}"/>{% endif %}

</head>

<body class='page {{layout.bodyClass}}'>
{% include main-menu-mobile.html %}
<div id="wrapper" class="wrapper">
{% include header.html headerClass='header-extra' %}
{{content}}
</div>
{% include footer.html %}
{% include sub-footer.html %}
<script type="text/javascript" src="{{ '/assets/js/scripts.js' | relative_url }}"></script>
{% include google-analytics.html %}
</body>
</html>
Loading

0 comments on commit 86f0988

Please sign in to comment.