start . me .
Directory path . bhakti , yogi .

HTML Document File : links-list.html

<!DOCTYPE html>
<html lang="en">

<head>
    <title>Yogic Culture Messages</title>

    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta charset="utf-8">
    <link rel="stylesheet" href="/sitewide.css"><script src="/web/dhtml/color-theme/colors.js"></script>
</head>

<body>
    <div><a href=".">vai alla directory contentente questi video.</a></div>

    <hr>

    <div class="link_to_video">
        <div><a href="inner-knowing.webm">downloaded file. (inner-knowing).</a></div>

        <div>#ParamahansaYogananda #Intuition #Advice.</div>

        <div>Solve all your Problems Easily by Developing your Intuition, Here is How..(Amazing Advice!).</div>

        https://www.youtube.com/watch?v=E87msHaVT9c
    </div>

    <hr>

    <div class="link_to_video">
        <div><a href="loving-god.mp4">downloaded file. (loving-god).</a></div>

        <div>#ParamahansaYogananda #Spiritual #Advice.</div>

        <div>This Video will Intensify Your Love for God! (The Only Relationship that will Satisfy You!).</div>

        https://www.youtube.com/watch?v=KrGMNWoTKGc
    </div>

    <hr>

    <div class="link_to_video">
        <div><a href="sadhana.webm">downloaded file. (sadhana).</a></div>

        <div>#Loneliness #FeelingAlone #Solitude.</div>

        <div>Loneliness is actually helping you! | Meditate in Solitude and Realize Who You Are!</div>

        https://www.youtube.com/watch?v=F0Vnn39qrfw
    </div>

    <hr>

    <div class="link_to_video">
        <div><a href="tapasya.webm">downloaded file. (tapasya).</a></div>

        <div>#AnandamayiMa #LifeChanging #Wisdom.</div>

        <div>This Video will Change the Way you Think about SUFFERING! | Life Changing Video.</div>

        https://www.youtube.com/watch?v=FpSAPDfZ-zk
    </div>

    <hr>

    <div><a href=".">vai alla directory contentente questi video.</a></div>

    <hr>

    <script src="/web/show-source.js"></script>

    <script>

        function youtube_embed_video(video_id_code) {
            return `<iframe width="560" height="315" src="https://www.youtube.com/embed/${video_id_code}?si=jJujJni14bCx8Om2" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>` + "\n"
        }

        for (var node of document.querySelectorAll(".link_to_video"))
            node.innerHTML = processed(node.innerHTML)

        function processed(text) {
            html = text.trim().split("\n")
            for (var i = 0; i < html.length; i++) {

                if (html[i].indexOf("://") != -1) {
                    var produced_html = ""
                    produced_html += "<div>" + '<a target="_blank" href="' + html[i] + '">' + html[i] + '</a>' + "</div> \n"
                    if (html[i].indexOf("/watch?v=") != -1) {
                        var video_id_code = html[i].trim().split("/watch?v=")[1]
                        produced_html += youtube_embed_video(video_id_code)
                    }
                    html[i] = produced_html
                }

            }
            return html.join("\n")
        }
    </script>
</body>

</html>