Skip to content

Commit

Permalink
Deploy 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robbinjohansson committed Mar 29, 2018
1 parent 486b14a commit 07d6960
Show file tree
Hide file tree
Showing 8 changed files with 127 additions and 103 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# v0.4.1
## TBA
## 03/29/2018

1. [](#new)
* New `post.html.twig` partial
Expand Down
2 changes: 1 addition & 1 deletion LICENSE → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Robbin Johansson <robbinfellow@gmail.com>
Copyright (c) Robbin Johansson <robbinfellow@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ $ bin/gpm update haywire

## Contribute

If you're interested in contributing, please read the [contribution guidelines.](https://github.com/robbinfellow/haywire-grav/blob/develop/.github/CONTRIBUTING.md)
If you're interested in contributing, please read the [contribution guidelines.](.github/CONTRIBUTING.md)

## Credits

Expand Down
2 changes: 1 addition & 1 deletion dist/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"/js/app.js": "/js/app.js?id=f6bd64b88a5a5df7a27e",
"/js/app.js": "/js/app.js?id=bccb715119e5a2bb9190",
"/css/app.css": "/css/app.css?id=93cc557f1fa4c26b47bf"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"babel-polyfill": "^6.26.0",
"bulma": "^0.6.2",
"cross-env": "^5.1.4",
"laravel-mix": "^2.1.2",
"laravel-mix": "^2.1.11",
"vue": "^2.5.16"
}
}
28 changes: 13 additions & 15 deletions resources/js/components/Navbar.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
<script>
export default {
mounted() {
//
},
data() {
return {
navIsActive: false
}
},
methods: {
toggleNav(){
!this.navIsActive ? this.navIsActive = true : this.navIsActive = false;
}
export default {
mounted() {
//
},
data() {
return {
navIsActive: false
}
},
methods: {
toggleNav(){
!this.navIsActive ? this.navIsActive = true : this.navIsActive = false;
}
}
}
</script>
Loading

0 comments on commit 07d6960

Please sign in to comment.