Test README; please ignore
==========================
This is a test of README code syntax highligting.
```php
call(AppManager::class);
$app->get('/[{path:.*}]', Controllers\DirectoryController::class);
// Engage!
$app->run();
```
---
```javascript
window.Vue = require('vue');
Vue.component('file-info-modal', require('./components/file-info-modal.vue').default);
const app = new Vue({
el: "#app",
data: function() {
return {
search: ''
};
},
methods: {
showFileInfo(filePath) {
this.$refs.fileInfoModal.show(filePath);
}
},
beforeMount: function() {
this.search = this.$el.querySelector('input[name="search"]').value;
}
});
```
---
```html
```
---
```scss
// Icons
$fa-font-path: "./webfonts";
@import "~@fortawesome/fontawesome-free/scss/fontawesome.scss";
@import "~@fortawesome/fontawesome-free/scss/brands.scss";
@import "~@fortawesome/fontawesome-free/scss/solid.scss";
// Fonts
@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro|Work+Sans:200,400&display=swap");
// Additional Styles
@import "markdown.scss";
@import "dark-mode.scss";
// Miscellaneous
:target::before {
content: "";
display: block;
height: 80px;
margin-top: -80px;
visibility: hidden;
}
```
---
```twig
{% if config('google_analytics_id', false) %}
{% include 'components/google-analytics.twig' %}
{% endif %}
{{ path == '.' ? 'Home' : path }} • Directory Lister
{% block content %}{% endblock %}
```