Mostrar articulos que matchean contenido
This commit is contained in:
parent
9aef79f87d
commit
e5a6a1a073
1 changed files with 5 additions and 1 deletions
6
main.go
6
main.go
|
@ -37,7 +37,11 @@ func (foo fooHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
title like "%colegio%" or
|
title like "%colegio%" or
|
||||||
title like "%escuela%" or
|
title like "%escuela%" or
|
||||||
title like "%Acosta%" or
|
title like "%Acosta%" or
|
||||||
title like "%tomas%"
|
title like "%tomas%" or
|
||||||
|
content like "%colegio%" or
|
||||||
|
content like "%escuela%" or
|
||||||
|
content like "%Acosta%" or
|
||||||
|
content like "%tomas%"
|
||||||
order by publication_date asc
|
order by publication_date asc
|
||||||
limit 50
|
limit 50
|
||||||
`)
|
`)
|
||||||
|
|
Loading…
Reference in a new issue