spatial-data-discovery / spatial-data-discovery.github.io

Organization website
https://spatial-data-discovery.github.io/
4 stars 0 forks source link

The About Page | Spring 2020 #25

Closed dt-woods closed 4 years ago

dt-woods commented 4 years ago

5 points

This assignment is a way of introducing you to the Markdown syntax and demonstrates how we will be communicating to the public through the web. Additionally, you will practice using git by submitting your file to the course\'s online repository.

Grading

Instructions

If you have not already, create a folder for our course repository, clone the repository on to your computer, and configure your git workspace using the commands below.

# On the Terminal / Command Prompt
cd [path to repository] # replace "[path to repository]" with the directory path
git clone https://github.com/spatial-data-discovery/spatial-data-discovery.github.io.git
cd spatial-data-discovery.github.io # change into the repository directory
git config user.name [username] # replace "[username]" with your GitHub user name
git config user.email [email] # replace "[email]" with the email associated with GitHub

If this is your first time writing in Markdown, practice some basic features (e.g., headings, lists, links, images, and emphasis) in an online environment, such as StackEdit.io.

When you are ready to write your \"About\" page:

---
title: "About the Coder"
author: "YOURNAME"
date: "TODAY'S DATE"
---

![ALT TEXT](URL TO IMAGE "TITLE")

Bio
:  YOUR BIO LINE

INCLUDE AN (ORDERED/UNORDERED) LIST

- UNORDERED ITEM 1
- UNORDERED ITEM 2

INCLUDE A TEXT EMPHASIS FORMAT (*ITALICS*, **BOLD**, ~~STRIKETHROUGH~~)

Save and close your file, stage it, commit it and push it to the course\'s online repository.

# On the Terminal / Command Prompt
git pull # check for remote changes on the repository
git add [your .Rmd file] # replace "[your .Rmd file]" with your file name
git commit -m "Created my about .Rmd file; Addresses #25"
git push # you may be prompted to enter your GitHub username and password