{"id":771,"date":"2021-02-02T20:02:28","date_gmt":"2021-02-02T20:02:28","guid":{"rendered":"https:\/\/www.lucernatv.cz\/?page_id=771"},"modified":"2023-08-07T15:37:25","modified_gmt":"2023-08-07T15:37:25","slug":"lucerna-tv","status":"publish","type":"page","link":"https:\/\/www.lucernatv.cz\/","title":{"rendered":""},"content":{"rendered":"\n<canvas style=\"\nposition: relative;\n\nwidth: 100vw;\n\theight: 450px;\nmargin:0 auto;\noverflow: hidden;\ntouch-action: none;\n\tcontent-zooming: none;\n\"><\/canvas>\n<script type=\"text\/javascript\">\n\"use strict\";\n{\n\t\/\/ particles class\n\tclass Particle {\n\t\tconstructor(k, i, j) {\n\t\t\tthis.i = i;\n\t\t\tthis.j = j;\n\t\t\tthis.init();\n\t\t\tthis.x = this.x0;\n\t\t\tthis.y = this.y0;\n\t\t\tthis.pos = posArray.subarray(k * 3, k * 3 + 3);\n\t\t\tthis.pointer = pointer;\n\t\t}\n\t\tinit() {\n\t\t\tthis.x0 = canvas.width * 0.5 + this.i * canvas.width \/ 240;\n\t\t\tthis.y0 = canvas.height * 0.5 + this.j * canvas.height \/ 160;\n\t\t}\n\t\tmove() {\n\t\t\tconst dx = this.pointer.x - this.x;\n\t\t\tconst dy = this.pointer.y - this.y;\n\t\t\tconst d = Math.sqrt(dx * dx + dy * dy);\n\t\t\tconst s = 500 \/ d;\n\t\t\tthis.x += -s * (dx \/ d) + (this.x0 - this.x) * 0.02;\n\t\t\tthis.y += -s * (dy \/ d) + (this.y0 - this.y) * 0.02;\n\t\t\t\/\/ update buffer position\n\t\t\tthis.pos[0] = this.x;\n\t\t\tthis.pos[1] = this.y;\n\t\t\tthis.pos[2] = 0.35 * s * s;\n\t\t}\n\t}\n\t\/\/ webGL canvas\n\tconst canvas = {\n\t\tinit(options) {\n\t\t\t\/\/ set webGL context\n\t\t\tthis.elem = document.querySelector(\"canvas\");\n\t\t\tconst gl = (this.gl =\n\t\t\t\tthis.elem.getContext(\"webgl\", options) ||\n\t\t\t\tthis.elem.getContext(\"experimental-webgl\", options));\n\t\t\tif (!gl) return false;\n\t\t\t\/\/ compile shaders\n\t\t\tconst vertexShader = gl.createShader(gl.VERTEX_SHADER);\n\t\t\tgl.shaderSource(\n\t\t\t\tvertexShader,\n\t\t\t\t`\n\t\t\t\t\tprecision highp float;\n\t\t\t\t\tattribute vec3 aPosition;\n\t\t\t\t\tuniform vec2 uResolution;\n\t\t\t\t\tvoid main() {\n\t\t\t\t\t\tgl_PointSize = max(3.0, min(60.0, aPosition.z));\n\t\t\t\t\t\tgl_Position = vec4(\n\t\t\t\t\t\t\t( aPosition.x \/ uResolution.x * 2.0) - 1.0, \n\t\t\t\t\t\t\t(-aPosition.y \/ uResolution.y * 2.0) + 1.0, \n\t\t\t\t\t\t\t0.0,\n\t\t\t\t\t\t\t1.0\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n      \t`\n\t\t\t);\n\t\t\tgl.compileShader(vertexShader);\n\t\t\tconst fragmentShader = gl.createShader(gl.FRAGMENT_SHADER);\n\t\t\tgl.shaderSource(\n\t\t\t\tfragmentShader,\n\t\t\t\t`\n\t\t\t\t\tprecision highp float;\n\t\t\t\t\tvoid main() {\n\t\t\t\t\t\tvec2 pc = 2.0 * gl_PointCoord - 1.0;\n\t\t\t\t\t\tgl_FragColor = vec4(1.0, 0.75, 0.25, 1.0 - dot(pc, pc));\n\t\t\t\t\t}\n\t\t\t\t`\n\t\t\t);\n\t\t\tgl.compileShader(fragmentShader);\n\t\t\tconst program = (this.program = gl.createProgram());\n\t\t\tgl.attachShader(this.program, vertexShader);\n\t\t\tgl.attachShader(this.program, fragmentShader);\n\t\t\tgl.linkProgram(this.program);\n\t\t\tgl.useProgram(this.program);\n\t\t\t\/\/ resolution\n\t\t\tthis.uResolution = gl.getUniformLocation(this.program, \"uResolution\");\n\t\t\tgl.enableVertexAttribArray(this.uResolution);\n\t\t\t\/\/ canvas resize\n\t\t\tthis.resize();\n\t\t\twindow.addEventListener(\"resize\", () => this.resize(), false);\n\t\t\treturn gl;\n\t\t},\n\t\tresize() {\n\t\t\tthis.width = this.elem.width = this.elem.offsetWidth;\n\t\t\tthis.height = this.elem.height = this.elem.offsetHeight;\n\t\t\tfor (const p of particles) p.init();\n\t\t\tthis.gl.uniform2f(this.uResolution, this.width, this.height);\n\t\t\tthis.gl.viewport(\n\t\t\t\t0,\n\t\t\t\t0,\n\t\t\t\tthis.gl.drawingBufferWidth,\n\t\t\t\tthis.gl.drawingBufferHeight\n\t\t\t);\n\t\t}\n\t};\n\tconst pointer = {\n\t\tinit(canvas) {\n\t\t\tthis.x = 1.1 + canvas.width * 0.5;\n\t\t\tthis.y = canvas.height * 0.5;\n\t\t\tthis.s = 10;\n\t\t\t[\"mousemove\", \"touchstart\", \"touchmove\"].forEach((event, touch) => {\n\t\t\t\tdocument.addEventListener(\n\t\t\t\t\tevent,\n\t\t\t\t\te => {\n\t\t\t\t\t\tif (touch) {\n\t\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\t\tthis.x = e.targetTouches[0].clientX;\n\t\t\t\t\t\t\tthis.y = e.targetTouches[0].clientY;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthis.x = e.clientX;\n\t\t\t\t\t\t\tthis.y = e.clientY;\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\tfalse\n\t\t\t\t);\n\t\t\t});\n\t\t}\n\t};\n\t\/\/ init webGL canvas\n\tconst particles = [];\n\tconst gl = canvas.init({\n\t\talpha: false,\n\t\tstencil: true,\n\t\tantialias: true,\n\t\tdepth: false\n\t});\n\t\/\/ additive blending \"lighter\"\n\tgl.blendFunc(gl.SRC_ALPHA, gl.ONE);\n\tgl.enable(gl.BLEND);\n\t\/\/ init pointer\n\tpointer.init(canvas);\n\t\/\/ init particles\n\tconst nParticles = 740 * 180;\n\tconst posArray = new Float32Array(nParticles * 3);\n\tlet k = 0;\n\tfor (let i = -150; i < 150; i++) {\n\t\tfor (let j = -60; j < 60; j++) {\n\t\t\tparticles.push(new Particle(k++, i, j));\n\t\t}\n\t}\n\t\/\/ create position buffer\n\tconst aPosition = gl.getAttribLocation(canvas.program, \"aPosition\");\n\tgl.enableVertexAttribArray(aPosition);\n\tconst positionBuffer = gl.createBuffer();\n\t\/\/ draw all particles\n\tconst draw = () => {\n\t\tgl.bindBuffer(gl.ARRAY_BUFFER, positionBuffer);\n\t\tgl.vertexAttribPointer(aPosition, 3, gl.FLOAT, false, 0, 0);\n\t\tgl.bufferData(\n\t\t\tgl.ARRAY_BUFFER,\n\t\t\tposArray,\n\t\t\tgl.DYNAMIC_DRAW\n\t\t);\n\t\tgl.drawArrays(gl.GL_POINTS, 0, nParticles);\n\t}\n\t\/\/ main animation loop\n\tconst run = () => {\n\t\trequestAnimationFrame(run);\n\t\tfor (const p of particles) p.move();\n\t\tdraw();\n\t};\n\trequestAnimationFrame(run);\n}\n\n\n<\/script>\n\n\n\n<div class=\"wp-block-columns has-3-columns lightpage is-layout-flex wp-container-10\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/kultura\/\">kultura<\/a><\/h2>\n\n\n<style>.wp-show-posts-columns#wpsp-818 {margin-left: -2em; }.wp-show-posts-columns#wpsp-818 .wp-show-posts-inner {margin: 0 0 2em 2em; }<\/style><section id=\"wpsp-818\" class=\" wp-show-posts\" style=\"\"><article class=\" wp-show-posts-single wpsp-clearfix post-3499 post type-post status-publish format-gallery has-post-thumbnail hentry category-kultura post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/04\/10\/fiducia-on-line-buk-20\/\"  title=\"Fiducia on-line \u2013 BUK 20+\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2026\/04\/e3FCc3Hic7I-318x180.jpg\" alt=\"Fiducia on-line \u2013 BUK 20+\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/04\/10\/fiducia-on-line-buk-20\/\" rel=\"bookmark\">Fiducia on-line \u2013 BUK 20+<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Kur\u00e1torsk\u00e9 slovo k v\u00fdstav\u011b tv\u016frc\u016f spojen\u00fdch s almanachem Buk, kterou Galerie Dole slav\u00ed dvacet let sv\u00e9 existence. C\u00edlem tohoto dlouhodob\u00e9ho um\u011bleck\u00e9ho projektu bylo nap\u0159\u00ed\u010d generacemi&#8230;<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><article class=\" wp-show-posts-single wpsp-clearfix post-3495 post type-post status-publish format-gallery has-post-thumbnail hentry category-kultura post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/03\/03\/fiducia-on-line-karel-nosek-on-the-road\/\"  title=\"Fiducia on-line &#8211; Karel Nosek: On the Road\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2026\/03\/CKU1_C-PAWg-318x180.jpg\" alt=\"Fiducia on-line &#8211; Karel Nosek: On the Road\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/03\/03\/fiducia-on-line-karel-nosek-on-the-road\/\" rel=\"bookmark\">Fiducia on-line &#8211; Karel Nosek: On the Road<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Kur\u00e1torsk\u00e9 slovo k v\u00fdstav\u011b v ostravsk\u00e9 Galerii Dole. Jaroslav Michna a Petr Ligock\u00fd o v\u00fdstav\u011b \u201eOn The Road\u201c, je\u017e je drobn\u00fdm ohl\u00e9dnut\u00edm za tvorbou Karla&#8230;<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><article class=\" wp-show-posts-single wpsp-clearfix post-3491 post type-post status-publish format-gallery has-post-thumbnail hentry category-film-televize-a-rozhlas category-kultura category-promeny-dramaturgie tag-prednaska tag-promeny-dramaturgie post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/02\/05\/marek-janicik-neviditelny-jan-gogola\/\"  title=\"Marek Jani\u010d\u00edk \u2013 Neviditeln\u00fd Jan Gogola\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2026\/02\/JtH3TWeKb0I-318x180.jpg\" alt=\"Marek Jani\u010d\u00edk \u2013 Neviditeln\u00fd Jan Gogola\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/02\/05\/marek-janicik-neviditelny-jan-gogola\/\" rel=\"bookmark\">Marek Jani\u010d\u00edk \u2013 Neviditeln\u00fd Jan Gogola<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Vystoupen\u00ed scen\u00e1rosty a re\u017eis\u00e9ra Marka Jani\u010d\u00edka na konferenci Prom\u011bny dramaturgie 2026. P\u0159\u00edpadov\u00e1 studie procesu vzniku dokument\u00e1rn\u00edho filmu o dramaturgovi a vysoko\u0161kolsk\u00e9m pedagogovi Janu Gogolovi. Autor&#8230;<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><\/section><!-- .wp-show-posts -->\n\n\n\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\" style=\"grid-template-columns:auto 17%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-columns piclink is-layout-flex wp-container-2\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:100%\">\n<h3 style=\" text-transform: lowercase; text-align: right; font-size:21px !important; margin-top:35px;\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/kultura\/\">V\u00edce z kultury<\/a><\/h3>\n<\/div>\n<\/div>\n<\/div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/filename.svg\" alt=\"\" class=\"wp-image-781 size-full\"\/><\/figure><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/veda\/\">v\u011bda<\/a><\/h2>\n\n\n<style>.wp-show-posts-columns#wpsp-1580 {margin-left: -2em; }.wp-show-posts-columns#wpsp-1580 .wp-show-posts-inner {margin: 0 0 2em 2em; }<\/style><section id=\"wpsp-1580\" class=\" wp-show-posts\" style=\"\"><article class=\" wp-show-posts-single wpsp-clearfix post-3487 post type-post status-publish format-gallery has-post-thumbnail hentry category-informatika tag-media-dejiny-spolecnost tag-zaznam post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/01\/19\/kamil-matula-kdyz-media-mluvi-hlasem-ai\/\"  title=\"Kamil Matula &#8211; Kdy\u017e m\u00e9dia mluv\u00ed hlasem AI\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2026\/01\/9Z0JG9r8EMo-318x180.jpg\" alt=\"Kamil Matula &#8211; Kdy\u017e m\u00e9dia mluv\u00ed hlasem AI\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/01\/19\/kamil-matula-kdyz-media-mluvi-hlasem-ai\/\" rel=\"bookmark\">Kamil Matula &#8211; Kdy\u017e m\u00e9dia mluv\u00ed hlasem AI<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Z\u00e1znam p\u0159edn\u00e1\u0161ky pedagoga Slezsk\u00e9 univerzity v Opav\u011b Kamila Matuly z konference M\u00e9dia \u2013 D\u011bjiny \u2013 Spole\u010dnost 2025, kter\u00e1 byla zam\u011b\u0159ena na t\u00e9ma Film a m\u00e9dia&#8230;<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><article class=\" wp-show-posts-single wpsp-clearfix post-3364 post type-post status-publish format-gallery has-post-thumbnail hentry category-ekologie category-veda tag-dokument tag-fiducia-on-line tag-ostravske-kulturni-stopy post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2024\/12\/15\/ostravske-kulturni-stopy-pohornicka-krajina-1-cast\/\"  title=\"Ostravsk\u00e9 kulturn\u00ed stopy \u2013 Pohornick\u00e1 krajina \u2013 1. \u010d\u00e1st, p\u0159\u00edroda\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2024\/12\/ef3_XSVJA6o-318x180.jpg\" alt=\"Ostravsk\u00e9 kulturn\u00ed stopy \u2013 Pohornick\u00e1 krajina \u2013 1. \u010d\u00e1st, p\u0159\u00edroda\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2024\/12\/15\/ostravske-kulturni-stopy-pohornicka-krajina-1-cast\/\" rel=\"bookmark\">Ostravsk\u00e9 kulturn\u00ed stopy \u2013 Pohornick\u00e1 krajina \u2013 1. \u010d\u00e1st, p\u0159\u00edroda<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Jak\u00fd dopad m\u011bla d\u016fln\u00ed \u010dinnost na Ostravsku na p\u0159\u00edrodu? Jak vypad\u00e1 tamn\u00ed krajina po ukon\u010den\u00ed d\u016fln\u00ed \u010dinnosti? Jak si bere zasa\u017een\u00e1 \u00fazem\u00ed p\u0159\u00edroda zp\u011bt? A&#8230;<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><article class=\" wp-show-posts-single wpsp-clearfix post-3434 post type-post status-publish format-gallery has-post-thumbnail hentry category-historie category-osobnosti category-veda tag-dokument tag-voices-of-meltingpot post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2024\/04\/01\/voices-of-meltingpot-sara-polak\/\"  title=\"Voices of Meltingpot \u2013 Sara Polak\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2024\/04\/g3RqTg_BHeo-318x180.jpg\" alt=\"Voices of Meltingpot \u2013 Sara Polak\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2024\/04\/01\/voices-of-meltingpot-sara-polak\/\" rel=\"bookmark\">Voices of Meltingpot \u2013 Sara Polak<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Sara je p\u016fvodem archeolo\u017eka a evolu\u010dn\u00ed antropolo\u017eka s bohat\u00fdmi zku\u0161enostmi z technologick\u00fdch startup\u016f v LA a Lond\u00fdn\u011b. Popularizuje a demystifikuje um\u011blou inteligenci a technologie ve&#8230;<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><\/section><!-- .wp-show-posts -->\n\n\n\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\" style=\"grid-template-columns:auto 17%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-columns piclink is-layout-flex wp-container-5\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:100%\">\n<h3 style=\" text-align: right; text-transform: lowercase; font-size:21px !important;margin-top:35px;\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/veda\/\">V\u00cdCE Z V\u011aDY<\/a><\/h3>\n<\/div>\n<\/div>\n<\/div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/filename.svg\" alt=\"\" class=\"wp-image-781 size-full\"\/><\/figure><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/spolecnost-2\/\">spole\u010dnost<\/a><\/h2>\n\n\n<style>.wp-show-posts-columns#wpsp-1583 {margin-left: -2em; }.wp-show-posts-columns#wpsp-1583 .wp-show-posts-inner {margin: 0 0 2em 2em; }<\/style><section id=\"wpsp-1583\" class=\" wp-show-posts\" style=\"\"><article class=\" wp-show-posts-single wpsp-clearfix post-3484 post type-post status-publish format-gallery has-post-thumbnail hentry category-media tag-media-dejiny-spolecnost tag-zaznam post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/01\/19\/lubos-ptacek-diskurzivni-ideologicka-a-umelecka-manipulace-v-ceskem-zivotopisnem-filmu\/\"  title=\"Lubo\u0161 Pt\u00e1\u010dek &#8211; Diskurzivn\u00ed, ideologick\u00e1 a um\u011bleck\u00e1 manipulace v \u010desk\u00e9m \u017eivotopisn\u00e9m filmu\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2026\/01\/FK7zLpMprM4-318x180.jpg\" alt=\"Lubo\u0161 Pt\u00e1\u010dek &#8211; Diskurzivn\u00ed, ideologick\u00e1 a um\u011bleck\u00e1 manipulace v \u010desk\u00e9m \u017eivotopisn\u00e9m filmu\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2026\/01\/19\/lubos-ptacek-diskurzivni-ideologicka-a-umelecka-manipulace-v-ceskem-zivotopisnem-filmu\/\" rel=\"bookmark\">Lubo\u0161 Pt\u00e1\u010dek &#8211; Diskurzivn\u00ed, ideologick\u00e1 a um\u011bleck\u00e1 manipulace v \u010desk\u00e9m \u017eivotopisn\u00e9m filmu<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Z\u00e1znam p\u0159edn\u00e1\u0161ky filmov\u00e9ho historika Lubo\u0161e Pt\u00e1\u010dka z konference M\u00e9dia &#8211; D\u011bjiny Spole\u010dnost 2025, kter\u00e1 byla zam\u011b\u0159ena na t\u00e9ma Film a m\u00e9dia jako n\u00e1stroj manipulace.<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><article class=\" wp-show-posts-single wpsp-clearfix post-3403 post type-post status-publish format-gallery has-post-thumbnail hentry category-spolecnost category-vzdelavani tag-dokument post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2025\/01\/21\/sberatele-kratomu\/\"  title=\"Sb\u011bratel\u00e9 kratomu\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2025\/01\/Snimek-obrazovky-2025-01-21-v-18.14.25-318x180.jpeg\" alt=\"Sb\u011bratel\u00e9 kratomu\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2025\/01\/21\/sberatele-kratomu\/\" rel=\"bookmark\">Sb\u011bratel\u00e9 kratomu<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Jak se p\u011bstuje a zpracov\u00e1v\u00e1 kratom? Jak\u00e9 jsou jeho \u00fa\u010dinky? A jak\u00e1 jsou rizika jeho u\u017e\u00edv\u00e1n\u00ed? Dokon\u010dili jsme dokument\u00e1rn\u00ed film o kratomu. Dokument je absolventsk\u00fdm&#8230;<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><article class=\" wp-show-posts-single wpsp-clearfix post-3378 post type-post status-publish format-gallery has-post-thumbnail hentry category-politika-a-mezinarodni-vztahy category-spolecnost category-verejny-prostor tag-dokument tag-fiducia-on-line tag-ostravske-kulturni-stopy post_format-post-format-gallery\" itemtype=\"http:\/\/schema.org\/CreativeWork\" itemscope><div class=\"wp-show-posts-inner\" style=\"\">\t\t<div class=\"wp-show-posts-image  wpsp-image-center \">\n\t\t\t<a href=\"https:\/\/www.lucernatv.cz\/index.php\/2024\/12\/30\/ostravske-kulturni-stopy-velka-ostrava\/\"  title=\"Ostravsk\u00e9 kulturn\u00ed stopy \u2013 Velk\u00e1 Ostrava\">\t\t\t\t\t<img src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2024\/12\/BZx3xFlPzw0-318x180.jpg\" alt=\"Ostravsk\u00e9 kulturn\u00ed stopy \u2013 Velk\u00e1 Ostrava\" itemprop=\"image\" class=\"center\" \/>\n\t\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t\t\t<header class=\"wp-show-posts-entry-header\">\n\t\t\t\t\t\t\t<h3 class=\"wp-show-posts-entry-title\" itemprop=\"headline\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/2024\/12\/30\/ostravske-kulturni-stopy-velka-ostrava\/\" rel=\"bookmark\">Ostravsk\u00e9 kulturn\u00ed stopy \u2013 Velk\u00e1 Ostrava<\/a><\/h3>\t\t\t\t\t\t<\/header><!-- .entry-header -->\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wp-show-posts-entry-summary\" itemprop=\"text\">\n\t\t\t\t\t\t\t<p>Vznik Velk\u00e9 Ostravy p\u0159ed sto lety zdaleka nebyl tak bezprobl\u00e9mov\u00fd jako vznik Velk\u00e9 Prahy \u010di Velk\u00e9ho Brna. \u0160lo o turbulentn\u00ed proces, kter\u00fd prov\u00e1zely ostr\u00e9 spory,&#8230;<\/p>\n\t\t\t\t\t\t<\/div><!-- .entry-summary -->\n\t\t\t\t\t<\/div><!-- wp-show-posts-inner --><div class=\"wpsp-clear\"><\/div><\/article><\/section><!-- .wp-show-posts -->\n\n\n\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\" style=\"grid-template-columns:auto 17%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-columns piclink is-layout-flex wp-container-8\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:100%\">\n<h3 style=\" text-align: right; text-transform: lowercase; font-size:21px !important; margin-top:35px;\"><a href=\"https:\/\/www.lucernatv.cz\/index.php\/spolecnost-2\/\">V\u00cdCE ZE SPOLE\u010cNOSTI<\/a><\/h3>\n<\/div>\n<\/div>\n<\/div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/filename.svg\" alt=\"\" class=\"wp-image-781 size-full\"\/><\/figure><\/div>\n<\/div>\n<\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>kultura V\u00edce z kultury v\u011bda V\u00cdCE Z V\u011aDY spole\u010dnost V\u00cdCE ZE SPOLE\u010cNOSTI<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/template-pagebuilder-full-width.php","meta":{"inline_featured_image":false,"_uag_custom_page_level_css":"","neve_meta_sidebar":"default","neve_meta_container":"default","neve_meta_enable_content_width":"off","neve_meta_content_width":100,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"on","_vp_format_video_url":"","_vp_image_focal_point":[]},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.12 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Lucerna TV<\/title>\n<meta name=\"description\" content=\"Vzd\u011bl\u00e1v\u00e1n\u00ed televize. Na na\u0161ich str\u00e1nk\u00e1ch najdete vzd\u011bl\u00e1vac\u00ed filmy, z\u00e1znamy debat a p\u0159edn\u00e1\u0161ek z na\u0161\u00ed d\u00edlny a tak\u00e9 vybran\u00e1 videa na\u0161ich partner\u016f nebo tak\u00e9 studentsk\u00e9 filmy z d\u00edlny student\u016f Slezsk\u00e9 univerzity v Opav\u011b a student\u016f Univerzity Tom\u00e1\u0161e Bati ve Zl\u00edn\u011b.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.lucernatv.cz\/\" \/>\n<meta property=\"og:locale\" content=\"cs_CZ\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Lucerna TV\" \/>\n<meta property=\"og:description\" content=\"Vzd\u011bl\u00e1v\u00e1n\u00ed televize. Na na\u0161ich str\u00e1nk\u00e1ch najdete vzd\u011bl\u00e1vac\u00ed filmy, z\u00e1znamy debat a p\u0159edn\u00e1\u0161ek z na\u0161\u00ed d\u00edlny a tak\u00e9 vybran\u00e1 videa na\u0161ich partner\u016f nebo tak\u00e9 studentsk\u00e9 filmy z d\u00edlny student\u016f Slezsk\u00e9 univerzity v Opav\u011b a student\u016f Univerzity Tom\u00e1\u0161e Bati ve Zl\u00edn\u011b.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.lucernatv.cz\/\" \/>\n<meta property=\"og:site_name\" content=\"lucernatv.cz\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/avtopava\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-07T15:37:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/filename.svg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Odhadovan\u00e1 doba \u010dten\u00ed\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuta\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.lucernatv.cz\/\",\"url\":\"https:\/\/www.lucernatv.cz\/\",\"name\":\"Lucerna TV\",\"isPartOf\":{\"@id\":\"https:\/\/www.lucernatv.cz\/#website\"},\"datePublished\":\"2021-02-02T20:02:28+00:00\",\"dateModified\":\"2023-08-07T15:37:25+00:00\",\"description\":\"Vzd\u011bl\u00e1v\u00e1n\u00ed televize. Na na\u0161ich str\u00e1nk\u00e1ch najdete vzd\u011bl\u00e1vac\u00ed filmy, z\u00e1znamy debat a p\u0159edn\u00e1\u0161ek z na\u0161\u00ed d\u00edlny a tak\u00e9 vybran\u00e1 videa na\u0161ich partner\u016f nebo tak\u00e9 studentsk\u00e9 filmy z d\u00edlny student\u016f Slezsk\u00e9 univerzity v Opav\u011b a student\u016f Univerzity Tom\u00e1\u0161e Bati ve Zl\u00edn\u011b.\",\"inLanguage\":\"cs\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.lucernatv.cz\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.lucernatv.cz\/#website\",\"url\":\"https:\/\/www.lucernatv.cz\/\",\"name\":\"lucernatv.cz\",\"description\":\"Vzd\u011bl\u00e1vac\u00ed televize\",\"publisher\":{\"@id\":\"https:\/\/www.lucernatv.cz\/#organization\"},\"alternateName\":\"Lucerna TV\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.lucernatv.cz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"cs\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.lucernatv.cz\/#organization\",\"name\":\"Lucerna TV\",\"url\":\"https:\/\/www.lucernatv.cz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"cs\",\"@id\":\"https:\/\/www.lucernatv.cz\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/logo.svg\",\"contentUrl\":\"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/logo.svg\",\"width\":128,\"height\":41,\"caption\":\"Lucerna TV\"},\"image\":{\"@id\":\"https:\/\/www.lucernatv.cz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/avtopava\",\"https:\/\/www.youtube.com\/channel\/UCtP8PPWG9JatWSMsKMOvdDg\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Lucerna TV","description":"Vzd\u011bl\u00e1v\u00e1n\u00ed televize. Na na\u0161ich str\u00e1nk\u00e1ch najdete vzd\u011bl\u00e1vac\u00ed filmy, z\u00e1znamy debat a p\u0159edn\u00e1\u0161ek z na\u0161\u00ed d\u00edlny a tak\u00e9 vybran\u00e1 videa na\u0161ich partner\u016f nebo tak\u00e9 studentsk\u00e9 filmy z d\u00edlny student\u016f Slezsk\u00e9 univerzity v Opav\u011b a student\u016f Univerzity Tom\u00e1\u0161e Bati ve Zl\u00edn\u011b.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.lucernatv.cz\/","og_locale":"cs_CZ","og_type":"article","og_title":"Lucerna TV","og_description":"Vzd\u011bl\u00e1v\u00e1n\u00ed televize. Na na\u0161ich str\u00e1nk\u00e1ch najdete vzd\u011bl\u00e1vac\u00ed filmy, z\u00e1znamy debat a p\u0159edn\u00e1\u0161ek z na\u0161\u00ed d\u00edlny a tak\u00e9 vybran\u00e1 videa na\u0161ich partner\u016f nebo tak\u00e9 studentsk\u00e9 filmy z d\u00edlny student\u016f Slezsk\u00e9 univerzity v Opav\u011b a student\u016f Univerzity Tom\u00e1\u0161e Bati ve Zl\u00edn\u011b.","og_url":"https:\/\/www.lucernatv.cz\/","og_site_name":"lucernatv.cz","article_publisher":"https:\/\/www.facebook.com\/avtopava","article_modified_time":"2023-08-07T15:37:25+00:00","og_image":[{"url":"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/filename.svg"}],"twitter_card":"summary_large_image","twitter_misc":{"Odhadovan\u00e1 doba \u010dten\u00ed":"1 minuta"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.lucernatv.cz\/","url":"https:\/\/www.lucernatv.cz\/","name":"Lucerna TV","isPartOf":{"@id":"https:\/\/www.lucernatv.cz\/#website"},"datePublished":"2021-02-02T20:02:28+00:00","dateModified":"2023-08-07T15:37:25+00:00","description":"Vzd\u011bl\u00e1v\u00e1n\u00ed televize. Na na\u0161ich str\u00e1nk\u00e1ch najdete vzd\u011bl\u00e1vac\u00ed filmy, z\u00e1znamy debat a p\u0159edn\u00e1\u0161ek z na\u0161\u00ed d\u00edlny a tak\u00e9 vybran\u00e1 videa na\u0161ich partner\u016f nebo tak\u00e9 studentsk\u00e9 filmy z d\u00edlny student\u016f Slezsk\u00e9 univerzity v Opav\u011b a student\u016f Univerzity Tom\u00e1\u0161e Bati ve Zl\u00edn\u011b.","inLanguage":"cs","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.lucernatv.cz\/"]}]},{"@type":"WebSite","@id":"https:\/\/www.lucernatv.cz\/#website","url":"https:\/\/www.lucernatv.cz\/","name":"lucernatv.cz","description":"Vzd\u011bl\u00e1vac\u00ed televize","publisher":{"@id":"https:\/\/www.lucernatv.cz\/#organization"},"alternateName":"Lucerna TV","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.lucernatv.cz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"cs"},{"@type":"Organization","@id":"https:\/\/www.lucernatv.cz\/#organization","name":"Lucerna TV","url":"https:\/\/www.lucernatv.cz\/","logo":{"@type":"ImageObject","inLanguage":"cs","@id":"https:\/\/www.lucernatv.cz\/#\/schema\/logo\/image\/","url":"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/logo.svg","contentUrl":"https:\/\/www.lucernatv.cz\/wp-content\/uploads\/2021\/02\/logo.svg","width":128,"height":41,"caption":"Lucerna TV"},"image":{"@id":"https:\/\/www.lucernatv.cz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/avtopava","https:\/\/www.youtube.com\/channel\/UCtP8PPWG9JatWSMsKMOvdDg"]}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"ultp_layout_landscape_large":false,"ultp_layout_landscape":false,"ultp_layout_portrait":false,"ultp_layout_square":false,"vp_sm":false,"vp_md":false,"vp_lg":false,"vp_xl":false,"vp_sm_popup":false,"vp_md_popup":false,"vp_xl_popup":false,"neve-blog":false},"uagb_author_info":{"display_name":"lucernatvc","author_link":"https:\/\/www.lucernatv.cz\/index.php\/author\/lucernatvc\/"},"uagb_comment_info":0,"uagb_excerpt":"kultura V\u00edce z kultury v\u011bda V\u00cdCE Z V\u011aDY spole\u010dnost V\u00cdCE ZE SPOLE\u010cNOSTI","_links":{"self":[{"href":"https:\/\/www.lucernatv.cz\/index.php\/wp-json\/wp\/v2\/pages\/771"}],"collection":[{"href":"https:\/\/www.lucernatv.cz\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.lucernatv.cz\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.lucernatv.cz\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lucernatv.cz\/index.php\/wp-json\/wp\/v2\/comments?post=771"}],"version-history":[{"count":86,"href":"https:\/\/www.lucernatv.cz\/index.php\/wp-json\/wp\/v2\/pages\/771\/revisions"}],"predecessor-version":[{"id":3286,"href":"https:\/\/www.lucernatv.cz\/index.php\/wp-json\/wp\/v2\/pages\/771\/revisions\/3286"}],"wp:attachment":[{"href":"https:\/\/www.lucernatv.cz\/index.php\/wp-json\/wp\/v2\/media?parent=771"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}