Skip to content

Commit

Permalink
Cloned from 2022.
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-zeman committed Jan 10, 2025
1 parent bce105f commit dc61162
Show file tree
Hide file tree
Showing 20 changed files with 785 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
Binary file added NSF_Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# udw25
# UDW25

2025 Workshop on Universal Dependencies

Repo to generate <https://universaldependencies.org/udw25/>

## Build locally

```console
gem install jekyll bundler
bundle config set --local path 'vendor/bundle'
bundle install
bundle exec jekyll build
bundle exec jekyll serve
```
12 changes: 12 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Site settings
title: UDW23
email: [email protected]
description: > # this means to ignore newlines until "baseurl:"
Universal Dependencies Workshop 2023 (UDW'23)
baseurl: "/udw23" # the subpath of your site, e.g. /blog/
url: "http://universaldependencies.org" # the base hostname & protocol for your site
twitter_username: ud_workshop
# github_username: jekyll

# Build settings
markdown: kramdown
2 changes: 2 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<footer class="site-footer">
</footer>
11 changes: 11 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{{ site.description }}">

<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
</head>
31 changes: 31 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<h2 class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</h2>

<ul>
<li><a class="page-link" href="/udw21/">Home</a></li>
<li><a class="page-link" href="/udw21/cfp.html">Call for papers</a></li>
<!--<li><a class="page-link" href="/udw21/submission.html">Submission</a></li>-->
<li><a class="page-link" href="/udw21/grants.html">Financial aid</a></li>
<li><a class="page-link" href="/udw21/proceedings.html">Proceedings</a></li>
<!-- <li><a class="page-link" href="/udw21/registration.html">Registration</a></li> -->
<li><a class="page-link" href="/udw21/program.html">Program</a></li>
<li><a class="page-link" href="/udw21/invited-talk.html">Invited talk</a></li>
<li><a class="page-link" href="/udw21/organization.html">Organization</a></li>
</ul>

<h3>IMPORTANT DATES </h3>
<ul>
<li><span><del>Sep 6: Announcement of conference modality</del></span></li>
<li><i>The conference will be held online. </i></li>
<li><span><del>Sep 27</del> <del>Oct 4 <b>Oct 11</b>: Submission</del> </span></li>
<li><span><del>Nov 10: Notification</del></span></li>
<li><span><del>Nov 30<b> 5 Dec </b>: Camera-readies</del> </span></li>
<li><span>Mar 21-25: SyntaxFest conference</span></li>
<i>All deadlines are 11.59 pm UTC -12h (“anywhere on Earth”).</i>
</ul>


<h3>CONTACT</h3>
<ul>
<li><span><a href="mailto:[email protected]">[email protected]</a></span></li>
<li> <a href="https://twitter.com/ud_workshop"> Follow @ud_workshop on Twitter</a> </li>
</ul>
26 changes: 26 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>

{% include head.html %}

<body>

<div class="wrapper">

<header>
{% include header.html %}
</header>

<section>
{{ content }}
</section>

<footer>
{% include footer.html %}
</footer>

</div>

</body>

</html>
10 changes: 10 additions & 0 deletions _layouts/page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: default
---
<div class="post">

<article class="post-content">
{{ content }}
</article>

</div>
193 changes: 193 additions & 0 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
/**
* Reset some basic elements
*/
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
margin: 0;
padding: 0;
}



/**
* Basic styling
*/
body {
font-family: $base-font-family;
font-size: 15px;
line-height: $base-line-height;
font-weight: 300;
color: $text-color;
background-color: $background-color;
-webkit-text-size-adjust: 100%;
}



/**
* Set `margin-bottom` to maintain vertical rhythm
*/
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
%vertical-rhythm {
margin-bottom: $spacing-unit / 2;
}



/**
* Images
*/
img {
max-width: 100%;
vertical-align: middle;
}



/**
* Figures
*/
figure > img {
display: block;
}

figcaption {
font-size: $small-font-size;
}



/**
* Lists
*/
ul, ol {
margin-left: $spacing-unit;
}

li {
> ul,
> ol {
margin-bottom: 0;
}
}



/**
* Headings
*/
h1, h2, h3, h4, h5, h6 {
font-weight: 600;
}



/**
* Links
*/
a {
color: $brand-color;
text-decoration: none;

&:visited {
color: darken($brand-color, 15%);
}

&:hover {
color: $text-color;
text-decoration: underline;
}
}



/**
* Blockquotes
*/
blockquote {
color: $grey-color;
border-left: 4px solid $grey-color-light;
padding-left: $spacing-unit / 2;
font-size: 18px;
letter-spacing: -1px;
font-style: italic;

> :last-child {
margin-bottom: 0;
}
}



/**
* Code formatting
*/
pre,
code {
font-size: 15px;
border: 1px solid $grey-color-light;
border-radius: 3px;
background-color: #eef;
}

code {
padding: 1px 5px;
}

pre {
padding: 8px 12px;
overflow-x: scroll;

> code {
border: 0;
padding-right: 0;
padding-left: 0;
}
}



/**
* Wrapper
*/
.wrapper {
margin-right: auto;
margin-left: auto;
@extend %clearfix;
}



/**
* Clearfix
*/
%clearfix {

&:after {
content: "";
display: table;
clear: both;
}
}



/**
* Icons
*/
.icon {

> svg {
display: inline-block;
width: 16px;
height: 16px;
vertical-align: middle;

path {
fill: $grey-color;
}
}
}
Loading

0 comments on commit dc61162

Please sign in to comment.