1- {% extends "!page.html" %}
2-
3- {% block extrahead %}
4- {{ super() }}
1+ {% extends "!page.html" %} {% block extrahead %} {{ super() }}
52<!-- Enhanced SEO meta tags -->
6- < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7- < meta name ="theme-color " content ="#2196F3 ">
3+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " / >
4+ < meta name ="theme-color " content ="#2196F3 " / >
85
96<!-- Topic-specific structured data -->
107< script type ="application/ld+json ">
11- {
12- "@context" : "https://schema.org" ,
13- "@type" : "TechnicalArticle" ,
14- "publisher" : {
15- "@type" : "Organization" ,
16- "name" : "NgKore" ,
17- "url" : "https://docs.ngkore.org" ,
18- "logo" : {
19- "@type" : "ImageObject" ,
20- "url" : "https://docs.ngkore.org/_static/ngkore-logo.svg"
21- }
22- } ,
23- "mainEntityOfPage" : {
24- "@type" : "WebPage" ,
25- "@id" : "{{ pageurl|e }}"
26- } ,
27- "headline" : "{{ title|e }}" ,
28- "description" : "{% if meta and meta.description %}{{ meta.description|e }}{% else %}{{ title|e }} - NgKore Documentation covering 5G Core Networks, Post-Quantum Cryptography, eBPF Technology, O-RAN, Network Security, and more.{% endif %}" ,
29- "keywords" : "{% if meta and meta.keywords %}{{ meta.keywords|e }}{% else %}5G core, post-quantum cryptography, eBPF, O-RAN, network security, NgKore{% endif %}" ,
30- "about" : [
31- {
32- "@type" : "Thing" ,
33- "name" : "5G Core Networks" ,
34- "description" : "Next-generation mobile network architecture"
35- } ,
36- {
37- "@type" : "Thing" ,
38- "name" : "Post-Quantum Cryptography" ,
39- "description" : "Quantum-resistant encryption algorithms"
8+ {
9+ "@context" : "https://schema.org" ,
10+ "@type" : "TechnicalArticle" ,
11+ "publisher" : {
12+ "@type" : "Organization" ,
13+ "name" : "NgKore Foundation" ,
14+ "url" : "https://docs.ngkorefoundation.org" ,
15+ "logo" : {
16+ "@type" : "ImageObject" ,
17+ "url" : "https://docs.ngkorefoundation.org/_static/ngkore-logo.svg"
18+ }
4019 } ,
41- {
42- "@type" : "Thing" ,
43- "name" : "eBPF Technology" ,
44- "description" : "Extended Berkeley Packet Filter for kernel programming"
20+ "mainEntityOfPage" : {
21+ "@type" : "WebPage" ,
22+ "@id" : "{{ pageurl|e }}"
4523 } ,
46- {
47- "@type" : "Thing" ,
48- "name" : "O-RAN" ,
49- "description" : "Open Radio Access Network interoperability"
50- }
51- ] ,
52- "datePublished" : "{{ last_updated|e if last_updated else '2023-01-01' }}" ,
53- "dateModified" : "{{ last_updated|e if last_updated else '2023-01-01' }}"
54- }
24+ "headline" : "{{ title|e }}" ,
25+ "description" : "{% if meta and meta.description %}{{ meta.description|e }}{% else %}{{ title|e }} - NgKore Documentation covering 5G Core Networks, Post-Quantum Cryptography, eBPF Technology, O-RAN, Network Security, and more.{% endif %}" ,
26+ "keywords" : "{% if meta and meta.keywords %}{{ meta.keywords|e }}{% else %}5G core, post-quantum cryptography, eBPF, O-RAN, network security, NgKore{% endif %}" ,
27+ "about" : [
28+ {
29+ "@type" : "Thing" ,
30+ "name" : "5G Core Networks" ,
31+ "description" : "Next-generation mobile network architecture"
32+ } ,
33+ {
34+ "@type" : "Thing" ,
35+ "name" : "Post-Quantum Cryptography" ,
36+ "description" : "Quantum-resistant encryption algorithms"
37+ } ,
38+ {
39+ "@type" : "Thing" ,
40+ "name" : "eBPF Technology" ,
41+ "description" : "Extended Berkeley Packet Filter for kernel programming"
42+ } ,
43+ {
44+ "@type" : "Thing" ,
45+ "name" : "O-RAN" ,
46+ "description" : "Open Radio Access Network interoperability"
47+ }
48+ ] ,
49+ "datePublished" : "{{ last_updated|e if last_updated else '2023-01-01' }}" ,
50+ "dateModified" : "{{ last_updated|e if last_updated else '2023-01-01' }}"
51+ }
5552</ script >
5653
5754<!-- Topic breadcrumbs for better SEO -->
5855{% if parents %}
5956< script type ="application/ld+json ">
60- {
61- "@context" : "https://schema.org" ,
62- "@type" : "BreadcrumbList" ,
63- "itemListElement" : [
64- {
65- "@type" : "ListItem" ,
66- "position" : 1 ,
67- "name" : "NgKore Docs" ,
68- "item" : "https://docs.ngkore .org/"
69- }
70- { % for parent in parents - % }
71- , {
72- "@type" : "ListItem" ,
73- "position" : { { loop . index + 1 } } ,
74- "name" : "{{ parent.title|e }}" ,
75- "item" : "{{ parent.link|e }}"
76- }
77- { % - endfor % }
78- , {
79- "@type" : "ListItem" ,
80- "position" : { { parents| length + 2 } } ,
81- "name" : "{{ title|e }}" ,
82- "item" : "{{ pageurl|e }}"
83- }
84- ]
85- }
57+ {
58+ "@context" : "https://schema.org" ,
59+ "@type" : "BreadcrumbList" ,
60+ "itemListElement" : [
61+ {
62+ "@type" : "ListItem" ,
63+ "position" : 1 ,
64+ "name" : "NgKore Docs" ,
65+ "item" : "https://docs.ngkorefoundation .org/"
66+ }
67+ { % for parent in parents - % }
68+ , {
69+ "@type" : "ListItem" ,
70+ "position" : { { loop . index + 1 } } ,
71+ "name" : "{{ parent.title|e }}" ,
72+ "item" : "{{ parent.link|e }}"
73+ }
74+ { % - endfor % }
75+ , {
76+ "@type" : "ListItem" ,
77+ "position" : { { parents| length + 2 } } ,
78+ "name" : "{{ title|e }}" ,
79+ "item" : "{{ pageurl|e }}"
80+ }
81+ ]
82+ }
8683</ script >
87- {% endif %}
88- {% endblock %}
84+ {% endif %} {% endblock %}
0 commit comments