Skip to content

Commit

Permalink
correção nos atributos das tags metas
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiscleverson committed Apr 21, 2024
1 parent 690d9f7 commit 447b750
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
{% endif %}

<meta property="og:site_name" content="this_is_cleverson">
<meta name="description" content={{description}}>
<meta name="description" content="{{description}}">
<meta property="og:type" content="article">

<meta property="og:title" content={{title}}>
<meta property="og:description" content={{description}}>
<meta property="og:title" content="{{title}}">
<meta property="og:description" content="{{description}}">
<meta property="og:url" content="https://cleverson.online/{{slug}}">
<meta property="og:image" content="{{ url_for('static', filename='imgs/thisiscleverson.jpg') }}">

<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content={{title}}>
<meta name="twitter:description" content={{description}}>
<meta name="twitter:title" content="{{title}}">
<meta name="twitter:description" content="{{description}}">
<meta property="twitter:url" content="https://cleverson.online/{{slug}}">
<meta name="twitter:image" content="{{ url_for('static', filename='imgs/thisiscleverson.jpg') }}">

Expand Down

0 comments on commit 447b750

Please sign in to comment.