body, err := ioutil.ReadAll(resp.Body)
if err != nil {
http.Error(w, "error reading response body", http.StatusInternalServerError)
return
}
// write status code and body from proxy request into the answer
w.WriteHeader(resp.StatusCode)
w.Write(body)
w.WriteHeader(resp.StatusCode)
_, err := io.Copy(w, body)
if err != nil {
http.Error(w, "error reading response body", http.StatusInternalServerError)
return
}
Find(`.vacancy-post`).Children().Not(`.vacancy-page-title`)