Skip to content

Commit

Permalink
Merge 699ba1e into e286946
Browse files Browse the repository at this point in the history
  • Loading branch information
mandeepkaurdev committed Nov 6, 2018
2 parents e286946 + 699ba1e commit 2d4d479
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ another_list = ['Lorem ipsum ', 'dolor sit amet, ', 'consectetur adipiscing elit
page = Html()( # add tags inside the one you created calling the parent
Head()( # add multiple tags in one call
Meta(charset='utf-8'), # add tag attributes using kwargs in tag initialization
Link(href="my.css", typ="text/css", rel="stylesheet")
Link(href="my.css", type="text/css", rel="stylesheet")
),
body=Body()( # give them a name so you can navigate the DOM with those names
Div(klass='linkBox')(
Expand Down Expand Up @@ -142,7 +142,7 @@ class BasePage(TempyPage):
return [
Link(href=url_for('static', filename='style.css'),
rel="stylesheet",
typ="text/css"),
type="text/css"),
Link(href='https://fonts.googleapis.com/css?family=Quicksand:300',
rel="stylesheet"),
Link(href=url_for('static',
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/css_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
page = Html()( # add tags inside the one you created calling the parent
Head()( # add multiple tags in one call
Meta(charset='utf-8'), # add tag attributes using kwargs in tag initialization
Link(href="my.css", typ="text/css", rel="stylesheet"),
Link(href="my.css", type="text/css", rel="stylesheet"),
new_css
),
body=Body()( # give them a name so you can navigate the DOM with those names
Expand Down

0 comments on commit 2d4d479

Please sign in to comment.