Skip to content

Commit

Permalink
NES 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Dec 7, 2020
1 parent 102bce2 commit 0ee41ea
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 6 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Global
.composer
composer.lock
package-lock.json
vendor/
node_modules/
dist/

# Flextype Site Specific
var/

# OS Generated
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
*.swp

# phpstorm
.idea/*
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="1.7.0"></a>
# [1.7.0](https://github.com/flextype-themes/nes/compare/v1.6.0...v1.7.0) (2020-12-07)

### Features

* **core** update code base for new Flextype 0.9.12

<a name="1.6.0"></a>
# [1.6.0](https://github.com/flextype-themes/nes/compare/v1.5.0...v1.6.0) (2020-08-26)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![preview](preview.png)

<p align="center">
<a href="https://github.com/flextype-themes/nes/releases"><img alt="Version" src="https://img.shields.io/github/release/flextype-themes/nes.svg?label=version&color=black"></a> <a href="https://github.com/flextype-themes/nes"><img src="https://img.shields.io/badge/license-MIT-blue.svg?color=black" alt="License"></a> <a href="https://github.com/flextype-themes/nes"><img src="https://img.shields.io/github/downloads/flextype-themes/nes/total.svg?color=black" alt="Total downloads"></a> <a href="https://github.com/flextype-themes/nes"><img src="https://img.shields.io/badge/Flextype-0.9.11-green.svg?color=black" alt="Flextype"></a> <a href=""><img src="https://img.shields.io/discord/423097982498635778.svg?logo=discord&color=black&label=Discord%20Chat" alt="Discord"></a>
<a href="https://github.com/flextype-themes/nes/releases"><img alt="Version" src="https://img.shields.io/github/release/flextype-themes/nes.svg?label=version&color=black"></a> <a href="https://github.com/flextype-themes/nes"><img src="https://img.shields.io/badge/license-MIT-blue.svg?color=black" alt="License"></a> <a href="https://github.com/flextype-themes/nes"><img src="https://img.shields.io/github/downloads/flextype-themes/nes/total.svg?color=black" alt="Total downloads"></a> <a href="https://github.com/flextype-themes/nes"><img src="https://img.shields.io/badge/Flextype-0.9.12-green.svg?color=black" alt="Flextype"></a> <a href=""><img src="https://img.shields.io/discord/423097982498635778.svg?logo=discord&color=black&label=Discord%20Chat" alt="Discord"></a>
</p>

## Features
Expand All @@ -16,7 +16,7 @@ The following dependencies need to be downloaded and installed for NES Theme.

| Item | Version | Download |
|---|---|---|
| [flextype](https://github.com/flextype/flextype) | 0.9.11 | [download](https://github.com/flextype/flextype/releases) |
| [flextype](https://github.com/flextype/flextype) | 0.9.12 | [download](https://github.com/flextype/flextype/releases) |
| [site](https://github.com/flextype-plugins/site) | >=1.0.0 | [download](https://github.com/flextype-plugins/site/releases) |
| [twig](https://github.com/flextype-plugins/twig) | >=1.0.0 | [download](https://github.com/flextype-plugins/twig/releases) |

Expand All @@ -29,4 +29,4 @@ The following dependencies need to be downloaded and installed for NES Theme.

## LICENSE
[The MIT License (MIT)](https://github.com/flextype-themes/nes/blob/master/LICENSE.txt)
Copyright (c) 2018-2020 [Sergey Romanenko](https://github.com/Awilum)
Copyright (c) 2021 [Sergey Romanenko](https://github.com/Awilum)
2 changes: 1 addition & 1 deletion templates/partials/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<nav class="nes-container with-title">
<h3 class="title"><a href="{{ url() }}">{{ registry.get('plugins.site.settings.title')|e('html') }}</a></h3>
<div>
{% for item in collect(entries.fetchCollection('')).orderBy('menu_item_order', 'ASC').all() %}
{% for item in arrays(entries.fetchCollection('')).sortBy('menu_item_order', 'ASC').all() %}
{% if item.menu_item_title %}
<a
href="{{ url() }}/{{ item.menu_item_url }}"
Expand Down
4 changes: 2 additions & 2 deletions theme.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: NES
version: 1.6.0
version: 1.7.0
description: NES theme for Flextype.
author:
name: Sergey Romanenko
Expand All @@ -10,6 +10,6 @@ bugs: https://github.com/flextype-themes/nes/issues
license: MIT

dependencies:
flextype: 0.9.11
flextype: 0.9.12
site: '>=1.0.0'
twig: '>=1.0.0'

0 comments on commit 0ee41ea

Please sign in to comment.