Hello friens. Please help me with my problem of indexing in google
this is site.
So. Its working about one month on hugo and dont indexing.
In the index of google only 11 pages.
This is code of my head.html
{{ template "_internal/schema.html" . }} {{ $title := .Title | default .Site.Title }} {{ $description := .Description | default .Site.Params.Description }} {{ $image := .Params.image | default .Site.Params.AvatarURL }} {{ $siteKeywords := .Site.Params.MetaKeywords | default (slice) }} {{ $postKeywords := .Params.tags | default (slice) }} {{ $keywords := union $siteKeywords $postKeywords }}<!-- SEO titles & descriptions -->
<title>{{ $title }}</title>
<meta name="description" content="{{ $description }}">
<meta name="keywords" content='{{ delimit $keywords ", "}}'>
<meta property="og:url" content="{{ .Permalink }}">
<meta property="og:type" content="website">
<meta property="og:title" content="{{ $title }}">
<meta property="og:description" content="{{ $description }}">
<meta property="og:image" content="{{ $image }}">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{ $title }}">
<meta name="twitter:description" content="{{ $description }}">
<meta property="twitter:domain" content="{{ .Permalink }}">
<meta property="twitter:url" content="{{ .Permalink }}">
<meta name="twitter:image" content="{{ $image }}">
<!-- SEO canonicals: helps Google understand your site better when using marketing campaign tagging etc -->
{{/* {{ if and .Params.paginate .Paginator }}
<link rel="canonical" href="{{ .Paginator.URL }}">
{{ if .Paginator.HasNext }}
<link rel="next" href="{{ .Paginator.Next.URL }}" />
{{end}}
{{ if .Paginator.HasPrev }}
<link rel="prev" href="{{ .Paginator.Prev.URL }}" />
{{end}}
{{ else }}
<link itemprop="url" rel="canonical" href="{{ .Permalink }}" />
{{ end }} */}}
{{ if .IsHome -}}
<script type="application/ld+json">
{
“@context”: “http://schema.org”,
“@type”: “WebSite”,
“name”: “{{ .Site.Title }}”,
“url”: “{{ .Site.BaseURL }}”,
“description”: “{{ .Site.Params.description }}”,
“thumbnailUrl”: “{{ .Site.Params.Logo | absURL }}”,
“license”: “{{ .Site.Params.Copyright }}”
}
{{ else }}
{{ $author := or (.Params.author) (.Site.Author.name) }}
{{ $organization := .Site.Title }}
{{ end }}
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/css/stikymenu.css">
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/css/styles.css">
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/css/gallery.css">
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/css/own-gallery.css">
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}/css/pagination.css">
{{/*
<link disabled id="dark-theme" rel="stylesheet" href="{{ .Site.BaseURL }}/css/dark.css"> */}}
<script src="{{ .Site.BaseURL }}/js/scripts.js"></script>
<script src="{{ .Site.BaseURL }}/js/own-gallery.js" defer></script>
<script src="{{ .Site.BaseURL }}/js/loadingstyle.js" defer></script>
<script src="{{ .Site.BaseURL }}/js/lazy-loading.js" defer></script>
<!-- Option for user to inject custom html -->
{{ if .Site.Params.CustomHeadHTML }}
{{ .Site.Params.CustomHeadHTML | safeHTML }}
{{ end }}
Can you see. Maybe i have some problem?
I never have such problem. Please help me. Whats wrong?