Skip to content
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.

Commit

Permalink
fixes directory structure for http2 task
Browse files Browse the repository at this point in the history
  • Loading branch information
benjtinsley committed Oct 11, 2017
1 parent bf4d1de commit 32bec57
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions extras/http2/src/html/components/example-component/index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% extends 'layouts/application' %}
{%- import 'macros/helpers.html' as macros -%}
{{ macros.css('example-component') }}

<div class="example-component">
<p>{{ text }}</p>
<p><strong>{{ caveat }}</strong></p>
<p><a href="#TODO">{{ link }}</a></p>
<p><a href="{{ linkUrl }}">{{ link }}</a></p>
</div>
3 changes: 2 additions & 1 deletion extras/http2/src/html/data/global.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"message": "HTTP/2 Blendid!",
"text": "This module is styled using HTTP/2 multiplexing. Check out the inspector to see the link tag inserted right above my parent div.",
"caveat": "Note: this should only be used if your server is configured for HTTP/2, otherwise you are sending needless requests.",
"link": "Read more about Blendid & HTTP/2 here"
"link": "Read more about Blendid & HTTP/2 here",
"linkUrl": "https://www.viget.com/articles/blendid-http-2-upgrade"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// example base level module file
// example base level component file

.example-module {
.example-component {
padding: 15px;
border: 1px dashed color(neon-magenta);

Expand Down

0 comments on commit 32bec57

Please sign in to comment.