Giter VIP home page Giter VIP logo

nlp-tlp.github.io's Introduction

UWA NLP-TLP Website

The website of the UWA Natural and Technical Language group. Now built using Eleventy.

How to clone this repo and run it locally

To clone the repo:

git clone https://github.com/nlp-tlp/nlp-tlp.github.io.git

To run it locally, first navigate to the location in which you cloned the site and install the required packages:

npm install

Then to run the development server:

npm run dev

This will keep the site alive on https://localhost:8080 and should refresh it if you make any changes.

How to update this website

This is an Eleventy website that automatically deploys to GitHub pages upon commits to the main branch.

All of the content of the website is located in /content. The .njk (Nunjucks) files in this directory are the main pages (the homepage, current research, our team, etc), and the .md (Markdown) files in each of the corresponding folders are the data that is used to populate those pages.

For example, /content/current-research.njk is the "Current Research" page (https://nlp-tlp.github.io/current-research). This Nunjucks file is responsible for the layout of that page.

Each research item is represented by a seperate Markdown file in /content/current-research/, e.g. adaptive-user-interfaces-for-industrial.md.

The markdown files generally consist of (key, value) pairs that carry the respective item's data. For example, the aforementioned research item looks like this:

---
name: Adaptive User Interfaces for Industrial Maintenance Procedures
authors: Caitlin Woods
description: In many organisations, maintenance procedure documentation (used to guide technicians through complex manual tasks) is still paper-based. Caitlin's research combines Human-Computer Interaction and Ontology Engineering to transform the way that organisations manage and use procedure documentation to support maintenance technicians.
group: PhD and Honours Projects
---

The Nunjucks files describe where to put each of these values to render the page.

Adding/editing/deleting new items

If you want to add a new item (a person, news item, etc), the easiest way is to clone this repo, duplicate one of the files, edit it, and push back to the main branch. Eleventy builds the pages based off of the file structure in /content, like magic.

Editing is similar - just edit the markdown file of the item you want to change, then push to main.

Same goes for deleting - just delete the file and push to main.

Images

In general, images should be placed under the /public/images folder into their respective collections. For example, if you want to add a person, add their profile photo to /public/images/people.

The exception is News. News images should be placed under /content/news/images (this allows them to work with Lightbox, which makes them enlarge when the user clicks on them).

Example - adding a person

Let's say I want to add a person to the site. Here's an example of how to do that.

First, clone this repo, and run the dev server (so you can see the changes you make) as per the first section:

git clone https://github.com/nlp-tlp/nlp-tlp.github.io.git
npm install
npm run dev

Then, navigate to /content/our-team in your file explorer. Assuming the person you want to add is a current member, navigate to /current. Copy one of the existing people, then name it to the name of your person.

Then, open that new markdown file in your text editor, and edit the relevant data as necessary. Save the file.

If they have a profile image, paste it into /public/images/people. (Make sure the filename is the same as the one you specified in the markdown file).

Now go check in your browser to make sure the person appears (go to https://localhost:8080/our-team).

Assuming it worked OK, add your files to a new commit and commit your changes:

git add .
git commit -m "Added person <person's name>"

And push to the main branch:

git push -u origin main

And in a minute or so, the website will have updated automatically.

Other details

What are the .11tydata files in each folder?

You may have noticed that each folder in /content has an .11tydata file in it. This file tells Eleventy the collection each page belongs to, and ensures that they don't get rendered as individual pages with their own URLs. These files should not be deleted or changed.

What if I want to add a new page, not just an item on an existing page?

If you want to do this, you'll need to make a new .njk file under /content, similar to all the others. It might be easiest to adapt an existing file to do what you want it to do.

Note that some of the pages have grouped collections (e.g. Current Research, Our Team etc) and some are not grouped (e.g. News).

Other nuances

  • The "Our team" folder is separated into Current and Alumni (it was the only good way I could think of to force Alumni to the bottom).
  • To edit the stylesheet, make sure to edit the SASS files (under /_sass) and not the CSS files under /public/css. The way I built the site, the SASS renders into the public folder (this is not standard practice with Eleventy but I much prefer SASS).
  • Please be sure to keep the filename conventions the same - all new pages should be slug case, e.g. no capital letters, and hyphens between words. michael-stewart.md is good, michael_stewart.md, Michael-stewart.md etc is not.

nlp-tlp.github.io's People

Contributors

michael-stewart-webdev avatar

Watchers

Wei Liu avatar  avatar Melinda Hodkiewicz avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.