Skip to content

Commit

Permalink
correção na tag meta twitter:image
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiscleverson committed Apr 27, 2024
1 parent 27b8571 commit 1b8b58a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
<meta property="og:title" content="{{title if title else 'this_is_cleverson'}}">
<meta property="og:description" content="{{description if description else 'Um blog sobre tecnologia'}}">
<meta property="og:url" content="https://cleverson.online/{{slug}}">
<meta property="og:image" content="{{ url_for('static', filename='imgs/thisiscleverson.jpg') }}">
<meta property="og:image" content="https://cleverson.online{{ url_for('static', filename='imgs/thisiscleverson.jpg') }}">

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

<link rel="icon" href="{{ url_for('static', filename='icons/linux.ico') }}" type="Linux icon">
<link rel="stylesheet" href="{{ url_for('static', filename='css/reset.css') }}">
Expand Down

0 comments on commit 1b8b58a

Please sign in to comment.