Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Commit

Permalink
convert form jekyll to basic hugo site
Browse files Browse the repository at this point in the history
  • Loading branch information
py563 committed Apr 16, 2020
1 parent d86a65d commit 311251a
Show file tree
Hide file tree
Showing 16 changed files with 693 additions and 28 deletions.
497 changes: 496 additions & 1 deletion .gitignore

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "awesome-ielts"]
path = awesome-ielts
url = https://github.com/ucatal/awesome-ielts
[submodule "themes/hello-friend"]
path = themes/hello-friend
url = [email protected]:TeamYayin/hugo-theme-hello-friend.git
27 changes: 6 additions & 21 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,13 @@
# A Beginner's Guide to IELTS

When I took the IELTS in April 2018, I curated the below collection of IELTS preparation video series, resources (materials and notes) and practice activities.
[Visit us here](http://ielts.awashedupnerd.in/)

I or the contributors nither hold any copyrights nor host any content they are shared as it is from public websites, so please strictly adhere to content owners policies, for personal use only.
Website is built with HUGO and hosted through Github Pages.

Working as of _April 10 2019_, contributions are always welcome!.
## Computer Requirements

Thanks to [awesome-ielts](https://github.com/ucatal/awesome-ielts) repository.
Minimal computer knowledge required to run the scripts. We will try to find someplace to host them and run with just a click if legally permitted.

Table of Contents
For detailed information on how to run python based scripts to download corresponding pratice activities and study notes please refer to the [Wiki](http://links.awashedupnerd.in/15z).

- [Prior Knowledge](#requirements)
- [Australian Broadcasting Study English IELTS Series](#australian-broadcasting-study-english-ielts-preparation)

## Requirements

Minimal computer knowledge required to run the scripts.

For detailed information on how to run python based scripts please refer to the repository [Wiki](https://github.com/py563/Learning_Series_IELTS/wiki "Software Requirements"). Running the scripts would most likely download corresponding pratice activities and study notes which are publicily available but not the videos.

## Australian Broadcasting Study English IELTS Preparation

[![Youtube video series](https://img.youtube.com/vi/p1UeGt-OtWE/0.jpg)](https://www.youtube.com/watch?v=ehBJ4Pi4C_Y&list=PL0wWwf_rAjWYDRa3KYZVFgQLjgIAbZSB4)

Youtube video series presented by Margot Politis for [study english language programs](https://www.abc.net.au/education/learn-english/study-english-ielts-preparation/7568250 "Australian Broadcasting Study English IELTS Preparation") at ABC. Which develops skills and strategies for intermediate to advanced learners of English, especially those preparing to take the IELTS test. After downloading the repository from github open terminal or command prompt and run `python3 downloadABCEngLearnSeriesNotes.py` which saves notes and activities to complete as instructed the series to a _notes_ folder.

[Top](#A-Beginner's-Guide-to-IELTS)
[Top](#A-Beginner's-Guide-to-IELTS)
6 changes: 0 additions & 6 deletions _config.yml

This file was deleted.

6 changes: 6 additions & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

56 changes: 56 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
baseURL = "/"
languageCode = "en-us"
theme = "hello-friend"
paginate = 5



[params]
# dir name of your blog content (default is `content/posts`)
contentTypeName = "post"
# "light" or "dark"
defaultTheme = "dark"
# if you set this to 0, only submenu trigger will be visible
showMenuItems = 4
# Enable to show reading time in minutes for posts
showReadingTime = true
# enable to display git revision info
enableGitInfo = true

[languages]
[languages.en]
title = "A Washed-up Nerd"
subtitle = "IELTS learning resources"
keywords = ""
copyright = ""
menuMore = "Show more"
writtenBy = "Written by"
readMore = "Read more"
readOtherPosts = "Read other posts"
newerPosts = "Newer posts"
olderPosts = "Older posts"
minuteReadingTime = "min read"
dateFormatSingle = "2006-01-02"
dateFormatList = "2006-01-02"

[languages.en.params.logo]
# logoText = "hello friend"
logoHomeLink = "/"
path = "/img/logo.svg"
alt = "A Washed-up Nerd"

[languages.en.menu]
[[languages.en.menu.main]]
identifier = "about"
name = "About"
url = "/about"
[[languages.en.menu.main]]
identifier = "showcase"
name = "Credits"
url = "/showcase"

[frontmatter]
date = ["date", "publishDate", "lastmod"]
lastmod = [":git", "lastmod", "date", "publishDate"]
publishDate = ["publishDate", "date"]
expiryDate = ["expiryDate"]
24 changes: 24 additions & 0 deletions content/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
+++
title = "About"
date = "2019-01-25"
author = "Prajwal"
+++

## When did we start

When I took the IELTS in April 2018, I curated the collection of IELTS preparation video series, resources (materials and notes) and practice activities.

## Who can use and how can it be used

We post reviews of various resources for Reading, Listening, Writing and Speaking sections in IELTS. All the content is readily available and without signing up for any subscriptions.

We recommend the readers to only use the reviewed notes and video series for preparing to IELTS test and not redistribute it.

The author for the post does not hold any copyrights for the recommended content, so please strictly adhere to the content owner's policies. For educational purposes, please contact content owners before doing any lesson plans for your students.

## Status

All reviewed contents links are working as of {{ .Lastmod }}.

> [IELTS™](https://www.ielts.org/) is jointly owned by the British Council, IDP: IELTS Australia and Cambridge Assessment English.
> Contributions are always welcome!. Please [📧](mailto:[email protected]) us for more details.
6 changes: 6 additions & 0 deletions content/archive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "Archive"
layout = "list"
url = "/archive"
type = "archive"
+++
8 changes: 8 additions & 0 deletions content/authors/Prajwal/prajwal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
+++
avatar = ""
bio = "test"
featured = true
social = []
title = "Prajwal"

+++
23 changes: 23 additions & 0 deletions content/post/hello.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
+++
title = "A Beginner's Guide to IELTS"
date = "2020-04-10"
author = "Prajwal"
cover = "/img/hello.jpg"
description = "A path to score a good band in IELTS"
+++

Hi Readers,

I planned to move as a resident to Canada when I got the feeling that being in the US was limiting the uprising of dreamy ideas. The brief unemployment consumed the expiring student work permit like a symbiote, it then shapeshifted as the visa issues.

I was also fascinated to design an artificially intelligent travel platform. So, I had to take the IELTS test in Boston, MA. In the following posts, you will understand my choices of words, the writing style, and the cohesion as an author.

Spelling was never the strong suit; it came with all guns blazing at me in the paper-based writing section. It got extra ammunition, who uses pen and paper these days to write. We are all slaves to spell checkers, Grammarly, and other smart writing tools. While I scored 8 or more in the other sections and scored 6.5 in writing.

I prepared a list that needs to be done before giving IELTS yet again. So, after a few life lessons and the journey across the world, I took the IELTS in India. I knew that paper would not do me good, I scheduled a computer-based test.

Unlike last time, As I finished each section faster to revise, practice spelling words, and noted down some insightful words. I finished the writing section ahead of schedule and cross-referenced it with the tenets taught by the learning series on the blog.

I could see substantial improvement from the earlier test. But the examiner had other thoughts for the writing section, I scored 9 in reading and 8.5 in listening. To improve writing skills and to share the learning series with other aspirants, I started this blog.

Please do subscribe to get more reviews of learning series and lesson plans to score a great band in IELTS.
21 changes: 21 additions & 0 deletions content/showcase.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: "Credits"
date: "2020-04-15"
author: "Prajwal"
---

The team admires these presenters and organizations, who hosted the invaluable IELTS learning video series, lessons, and resources on the web to students as free content.

## Content Owners

| Presenter | Website |
| -------------------- | :----------------------------------------------------------------------: |
| Margot Politis (ABC) | [Study English: IELTS Preparation](https://links.awashedupnerd.in/aplus) |

The team would also like to thank the other fellow content aggregators, who aggregated great IELTS resources. They made our work more presentable to readers.

## Content aggregators

| Name | Webpage |
| ---------- | :-----------------------------------------------------------------: |
| Umut Catal | [Awesome IELTS Repository](https://github.com/ucatal/awesome-ielts) |
Binary file added static/img/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions static/img/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/hello.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions static/img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions themes/hello-friend
Submodule hello-friend added at 5cf4ca

0 comments on commit 311251a

Please sign in to comment.