www.religionenlibertad.com Open in urlscan Pro
167.233.3.76  Public Scan

Submitted URL: http://www.religionenlibertad.com//secciones//1//28//tag//ateismo.html
Effective URL: https://www.religionenlibertad.com//secciones//1//28//tag//ateismo.html
Submission: On August 19 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

Name: buscarPOST /busqueda/1/religionenlibertad

<form name="buscar" class="searchForm search" action="/busqueda/1/religionenlibertad" method="post">
  <div id="buscar_lupa" class="buscar_lupa">
    <div>
      <input type="text" name="param_busq" id="param_busq" value="" class="caja_buscar" placeholder="Buscar..." autocomplete="off" size="17">
      <button type="submit" form="buscar" value="Submit" id="btn_buscar"><img loading="lazy" src="/images/lupa_buscar.png"></button>
    </div>
  </div>
  <script type="text/javascript">
    (function($) {
      $.fn.extend({
        filter_input: function(options) {
          var defaults = {
            //CUIDADO CON LA CODIFICACION DEL ARCHIVO, NO OS CARGUEIS ESTO
            regex: /[a-z0-9_\- áéíóúüÁÉÍÓÚÜñÑçÇ'´]/i,
            negkey: false, // use "-" if you want to allow minus sign at the beginning of the string
            live: false,
            events: 'keypress paste',
            allowIntro: true
          };
          var options = $.extend(defaults, options);

          function filter_input_function(event) {
            var input = (event.input) ? event.input : $(this);
            if (event.ctrlKey || event.altKey) return;
            if (event.type == 'keypress') {
              var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
              // 8 = backspace, 9 = tab, 13 = enter, 35 = end, 36 = home, 37 = left, 39 = right, 46 = delete
              if (options.allowIntro && key == 13) {
                return true;
              }
              if (key == 8 || key == 9 || key == 13 || key == 35 || key == 36 || key == 37 || key == 39 || key == 46) {
                // if charCode = key & keyCode = 0
                // 35 = #, 36 = $, 37 = %, 39 = ', 46 = .
                if (event.charCode == 0 && event.keyCode == key) {
                  return true;
                }
              }
              var string = String.fromCharCode(key);
              // if they pressed the defined negative key
              if (options.negkey && string == options.negkey) {
                // if there is already one at the beginning, remove it
                if (input.val().substr(0, 1) == string) {
                  input.val(input.val().substring(1, input.val().length)).change();
                } else {
                  // it isn't there so add it to the beginning of the string
                  input.val(string + input.val()).change();
                }
                return false;
              }
              var regex = new RegExp(options.regex);
            } else if (event.type == 'paste') {
              input.data('value_before_paste', event.target.value);
              setTimeout(function() {
                filter_input_function({
                  type: 'after_paste',
                  input: input
                });
              }, 1);
              return true;
            } else if (event.type == 'after_paste') {
              var string = input.val();
              var regex = new RegExp('^(' + options.regex + ')+$');
            } else {
              return false;
            }
            if (regex.test(string)) {
              return true;
            } else if (typeof(options.feedback) == 'function') {
              options.feedback.call(this, string);
            }
            if (event.type == 'after_paste') input.val(input.data('value_before_paste'));
            return false;
          }
          var jquery_version = $.fn.jquery.split('.');
          if (options.live) {
            if (parseInt(jquery_version[0]) >= 1 && parseInt(jquery_version[1]) >= 7) {
              $(this).on(options.events, filter_input_function);
            } else {
              $(this).live(options.events, filter_input_function);
            }
          } else {
            return this.each(function() {
              var input = $(this);
              if (parseInt(jquery_version[0]) >= 1 && parseInt(jquery_version[1]) >= 7) {
                input.off(options.events).on(options.events, filter_input_function);
              } else {
                input.unbind(options.events).bind(options.events, filter_input_function);
              }
            });
          }
        }
      });

      function cleanStr(str) {
        var find = ['á', 'à', 'ä', 'â', 'Á', 'À', 'Â', 'Ä', 'é', 'è', 'ë', 'ê', 'É', 'È', 'Ê', 'Ë', 'í', 'ì', 'ï', 'î', 'Í', 'Ì', 'Ï', 'Î', 'ó', 'ò', 'ö', 'ô', 'Ó', 'Ò', 'Ö', 'Ô', 'ú', 'ù', 'ü', 'û', 'Ú', 'Ù', 'Ü', 'Û', 'ñ', 'Ñ', 'ç', 'Ç'];
        var replace = ['a', 'a', 'a', 'a', 'A', 'A', 'A', 'A', 'e', 'e', 'e', 'e', 'E', 'E', 'E', 'E', 'i', 'i', 'i', 'i', 'I', 'I', 'I', 'I', 'o', 'o', 'o', 'o', 'O', 'O', 'O', 'O', 'u', 'u', 'u', 'u', 'U', 'U', 'U', 'U', 'n', 'N', 'c', 'C'];
        var replaceString = str;
        for (var i = 0; i < find.length; i++) {
          replaceString = replaceString.replace(find[i], replace[i]);
        }
        replaceString = replaceString.replace(/((.*?)<([^>]+)>)/ig, "");
        replaceString = replaceString.replace(/[^a-zA-Z0-9\ \s]/g, "");
        replaceString = replaceString.replace(/ /g, "+");
        return replaceString;
      };
      $("#param_busq").on("change", function() {
        console.log(cleanStr($(this).val()));
        $("form.search").attr("action", "/busqueda/1/" + cleanStr($(this).val()));
        //$("form.search").attr( "action", "/busqueda/1/"+$(this).val());
      });
      $('.searchForm').submit(function(e) {
        e.preventDefault();
        document.location = $(this).attr('action');
      });
    })(jQuery);
  </script>
  <script>
    $(document).ready(function() {
      $('#btn_lupa').click(function() {
        $('#buscar_lupa').toggle("slow");
        $("#param_busq").focus();
      });
      $("#btn_buscar").click(function() {
        $("#param_busq").val($("#param_busq").val().replace(/ /g, "+"));
        $(this).parents("form").submit();
      });
    });
  </script>
</form>

Text Content

SU PRIVACIDAD ES IMPORTANTE PARA NOSOTROS

Nosotros y nuestros 1438 socios almacenamos y/o accedemos a información en un
dispositivo, como cookies, y procesamos datos personales, como identificadores
únicos e información estándar enviada por un dispositivo para publicidad y
contenido personalizado, medición de publicidad y contenido, investigación de
audiencia y desarrollo de servicios. Con su permiso, nosotros y nuestros socios
podemos utilizar datos de localización geográfica precisa e identificación
mediante las características de dispositivos. Puede hacer clic para otorgarnos
su consentimiento a nosotros y a nuestros 1438 socios para que llevemos a cabo
el procesamiento previamente descrito. De forma alternativa, puede acceder a
información más detallada y cambiar sus preferencias antes de otorgar o negar su
consentimiento. Tenga en cuenta que algún procesamiento de sus datos personales
puede no requerir de su consentimiento, pero usted tiene el derecho de rechazar
tal procesamiento. Sus preferencias se aplicarán solo a este sitio web. Puede
cambiar sus preferencias o retirar su consentimiento en cualquier momento
volviendo a este sitio y haciendo clic en el botón "Privacidad" en la parte
inferior de la página web.
MÁS OPCIONESACEPTO


LUNES, 19 DE AGOSTO DE 2024


 * portada
 * blogs
 * papa francisco
 * españa
 * américa
 * libros
 * otras noticias
   
 * vídeos
 * opinión
 * libros rel
   
 * DONA AHORA
 * SUSCRÍBETE
 * 

historias de conversión historias de evangelización Vida y familia Europa EEUU
Mundo Personajes Polémicas Ciencia y Fe Cultura Nueva Evangelización Vaticano




ATEÍSMO

 * De ateo a cristiano

El ateísmo promulga que Dios no existe, por lo que niega la verdad de toda fe o
creencia relacionada con lo sobrenatural. Pero en muchos casos el propio ateísmo
se ha convertido en una corriente cuasirreligiosa en sí misma. Aquí encontrarás
noticias y reportajes sobre esta corriente pero también el testimonio de ateos
que se convirtieron al cristianismo.




FACEBOOK BORRA LA CUENTA DEL ATEO DAWKINS POR DECIR QUE «UN BOXEADOR NO DEBE
PELEAR CONTRA MUJERES»

ReL | Madrid | 16 agosto 2024




DEBATE DE AYAAN HIRSI ALI, AHORA CRISTIANA, CON SU ANTIGUO MAESTRO ATEO,
DAWKINS: EL VACÍO MORAL

Pablo J. Ginés | Madrid | 07 junio 2024




EL SENTIDO DEL UNIVERSO: 1 DE CADA 3 INCREYENTES Y 1 DE CADA 4 PERSONAS PIENSAN
QUE NO LO TIENE

Pablo J. Ginés | Madrid | 11 mayo 2024




ATEO Y CRIADO EN LA CULTURA SAMURÁI, NEGÓ EL ORIGEN DE LA BIBLIA... Y DIOS SE LO
MOSTRÓ: «TÚ GANAS»

José María Carrera | Madrid | 06 mayo 2024




EN OCCIDENTE, HASTA EL 30% DE ATEOS Y EL 25% DE AGNÓSTICOS ¡CREE EN SERES
SOBRENATURALES!

Pablo J. Ginés | Madrid | 29 abril 2024




CANTALAMESSA: LA INCREDULIDAD DE TOMÁS SIRVIÓ PARA PROBAR LA RESURRECCIÓN Y LA
DIVINIDAD DE CRISTO

Raniero Cantalamessa, OFM Cap | Madrid | 04 abril 2024




EL MARTIRIO DEL NIÑO CRISTERO, JOSÉ SÁNCHEZ DEL RÍO, EN SU CONTEXTO: LEYES
ULTRALAICISTAS MASÓNICAS

ReL | Madrid | 10 febrero 2024




LOS «SIN RELIGIÓN» EN EEUU: UN 36% CREE EN EL CIELO, UN 70% EN UN PODER SUPERIOR
O «DIOS»

José María Carrera | Madrid | 25 enero 2024




CUANDO LOS ATEOS SOVIÉTICOS COMUNISTAS DUDABAN SOBRE CÓMO PERSEGUIR LA NAVIDAD,
ÁRBOLES INCLUIDOS

Pablo J. Ginés | Madrid | 23 diciembre 2023




EN «BARIONÁ», SARTRE «SE TOMÓ EN SERIO LA NAVIDAD Y LA CONFRONTÓ CON SU
EXISTENCIALISMO ATEO»

ReL | Madrid | 22 diciembre 2023




LOS CREYENTES SON MUCHO MÁS FELICES, OPTIMISTAS Y ANIMOSOS QUE LOS ATEOS: NUEVO
ESTUDIO BRITÁNICO

Pablo J. Ginés | Madrid | 02 diciembre 2023




HIJA DE COMUNISTAS, BAUTIZADA A ESCONDIDAS, LLAMABA «INRI» A «UN TAL JESÚS»... Y
LLEGÓ A SER ABADESA

Juan Cadarso | Madrid | 01 diciembre 2023






LA VIOLENCIA SE EXTIENDE EN NIGERIA, Y NO ES SÓLO EL YIHADISMO: ¿CÓMO SE PUEDE
CONSTRUIR LA PAZ?

Pablo J. Ginés | Madrid | 21 noviembre 2023


SEVILLA ACOGE LA BEATIFICACIÓN DE MANUEL GONZÁLEZ-SERNA Y DE OTROS 19 COMPAÑEROS
MÁRTIRES EN 1936

Juan Cadarso | Madrid | 18 noviembre 2023


LAS 4 PREGUNTAS QUE DEBE HACERSE UN BUSCADOR ESPIRITUAL, PARA NO QUEDARSE
INSTALADO EN LA DUDA

Pablo J. Ginés | Madrid | 14 noviembre 2023


NUEVA CENSURA DE YOUTUBE CONTRA UN CANAL CATÓLICO: CIERRA SIN AVISAR HM
TELEVISIÓN EN INGLÉS

G. de A. | Madrid | 10 noviembre 2023


EL RÉGIMEN DE DANIEL ORTEGA METE A OTROS 8 SACERDOTES EN LA CÁRCEL; Y YA SON 13
EN EL ÚLTIMO PERIODO

Juan Cadarso | Madrid | 17 octubre 2023


¿UN CATÓLICO PUEDE ACEPTAR LA AGENDA 2030? RED DE REDES ARRANCA TEMPORADA
RESPONDIENDO A LA POLÉMICA

ReL | Madrid | 23 septiembre 2023

1 2 3 4 5 6 7 8 9



Portada Vaticano España América Latina Vida y familia
Historias de conversión Historias de evangelización Opinión
Blogs Vídeos
Suscríbete a ReL
Difúndenos
DONA AHORA
Quiénes Somos
Contacto
Tel: 680 30 39 15
Publicidad
Copyright © 2024 Religión en Libertad
Aviso Legal | Política de Privacidad | Política de Cookies | Mapa del sitio