Skip to content

Commit

Permalink
Implement sitemap #230 (#231)
Browse files Browse the repository at this point in the history
Add offline support #40
  • Loading branch information
ragaeeb committed Sep 18, 2020
1 parent 3a2508a commit 882b36d
Show file tree
Hide file tree
Showing 5 changed files with 1,423 additions and 690 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.6] - 2020-09-17

### Added

- [Implement sitemap](https://github.com/ragaeeb/das-js/issues/230)
- [Add offline support](https://github.com/ragaeeb/das-js/issues/40)

### Updated

- [Upgrade dependency packages](https://github.com/ragaeeb/das-js/issues/5)

## [0.6.5] - 2020-09-02

### Updated

- Fixed a security vulnerability.

## [0.6.4] - 2020-09-02

### Updated
Expand Down
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@ Tutorials: +[Prayer Timings](http://ior.ad/75n0)

# Gatsby Simplefolio ⚡️ [![GitHub](https://img.shields.io/github/license/cobidev/gatsby-simplefolio?color=blue)](https://github.com/cobidev/gatsby-simplefolio/blob/master/LICENSE.md) ![GitHub stars](https://img.shields.io/github/stars/cobidev/gatsby-simplefolio) ![GitHub forks](https://img.shields.io/github/forks/cobidev/gatsby-simplefolio)

If we ever want to import an image directly which Gatsby can process we can do it like this:

Let's say we wanted to include image from 'src/images/das_bg.jpg', we can do:

```
import dasBg from '../images/das_bg.jpg';
```

And then in the `render()`

```
<img src={dasBg} />
```

Learned from tutorial [Level Up Tutorials: Scott Tolinski - Pro Gatsby 2](https://www.leveluptutorials.com/tutorials/pro-gatsby-2)

## A clean, beautiful and responsive portfolio template for Developers

<h2>
Expand Down
2 changes: 2 additions & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ module.exports = {
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sitemap`,
`gatsby-plugin-sass`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-offline`,
'gatsby-source-local-git',
{
resolve: `gatsby-source-filesystem`,
Expand Down
Loading

0 comments on commit 882b36d

Please sign in to comment.